Convert USD to SBD
US Dollar → Solomon Islands Dollar
1 USD = 8.037807 SBD(1 SBD = 0.124412 USD)
Currency converter
1 USD =
8.0378 SBD
USD to SBD: last 30 days
Over the last 30 days, 1 USD traded between 7.9714 and 8.0378 SBD, averaging 8.0025 SBD. The USD/SBD rate is up 0.50% since 2026-08-28.
- 30-day high
- 8.0378
- 2026-09-25
- 30-day low
- 7.9714
- 2026-09-08
- 30-day average
- 8.0025
- Days with data: 30
- 30-day change
- +0.50%
- since 2026-08-28
8.0378
7.97142026-08-28 → 2026-09-26
| Date | 1 USD in SBD | Daily change |
|---|---|---|
| 2026-09-26 | 8.0378 | 0.00% |
| 2026-09-25 | 8.0378 | +0.14% |
| 2026-09-24 | 8.0268 | +0.37% |
| 2026-09-23 | 7.9973 | -0.25% |
| 2026-09-22 | 8.0173 | +0.28% |
| 2026-09-21 | 7.995 | -0.26% |
| 2026-09-20 | 8.0162 | 0.00% |
| 2026-09-19 | 8.0162 | +0.20% |
| 2026-09-18 | 8.0005 | +0.04% |
| 2026-09-17 | 7.9971 | -0.30% |
| 2026-09-16 | 8.021 | +0.07% |
| 2026-09-15 | 8.0156 | +0.12% |
| 2026-09-14 | 8.0056 | -0.09% |
| 2026-09-13 | 8.0128 | 0.00% |
| 2026-09-12 | 8.0128 | +0.45% |
| Date | 1 USD in SBD | Daily change |
|---|---|---|
| 2026-09-11 | 7.9767 | +0.06% |
| 2026-09-10 | 7.9716 | -0.05% |
| 2026-09-09 | 7.9759 | +0.06% |
| 2026-09-08 | 7.9714 | -0.01% |
| 2026-09-07 | 7.9719 | -0.35% |
| 2026-09-06 | 8 | +0.00% |
| 2026-09-05 | 8 | +0.03% |
| 2026-09-04 | 7.9977 | -0.09% |
| 2026-09-03 | 8.0046 | +0.04% |
| 2026-09-02 | 8.0012 | -0.02% |
| 2026-09-01 | 8.0025 | +0.09% |
| 2026-08-31 | 7.9951 | -0.06% |
| 2026-08-30 | 8 | +0.00% |
| 2026-08-29 | 7.9997 | +0.02% |
| 2026-08-28 | 7.9981 | — |
USD to SBD conversion table
1 USD8.0378 SBD
5 USD40.189 SBD
10 USD80.3781 SBD
25 USD200.9452 SBD
50 USD401.8904 SBD
100 USD803.7807 SBD
500 USD4,018.9036 SBD
1,000 USD8,037.8073 SBD
5,000 USD40,189.036 SBD
10,000 USD80,378.073 SBD
Get the USD/SBD rate in your app
One GET request returns the latest USD → SBD rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/SBD"fetch('https://rate-api.com/api/v1/pair/USD/SBD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} SBD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/SBD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} SBD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/SBD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} SBD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "SBD"
},
"rate": 8.0378,
"timestamp": 1790429301,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
SBD to USDSolomon Islands Dollar → US Dollar0.12441Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.