Convert SBD to GBP
Solomon Islands Dollar → British Pound
1 SBD = 0.0938791 GBP(1 GBP = 10.651998 SBD)
Currency converter
1 SBD =
0.093879 GBP
SBD to GBP: last 30 days
Over the last 30 days, 1 SBD traded between 0.09203 and 0.094241 GBP, averaging 0.092872 GBP. The SBD/GBP rate is up 1.99% since 2026-08-28.
- 30-day high
- 0.094241
- 2026-09-24
- 30-day low
- 0.09203
- 2026-08-30
- 30-day average
- 0.092872
- Days with data: 30
- 30-day change
- +1.99%
- since 2026-08-28
0.094241
0.092032026-08-28 → 2026-09-26
| Date | 1 SBD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.093879 | 0.00% |
| 2026-09-25 | 0.093879 | -0.38% |
| 2026-09-24 | 0.094241 | +0.06% |
| 2026-09-23 | 0.094184 | +0.91% |
| 2026-09-22 | 0.093338 | -0.04% |
| 2026-09-21 | 0.093379 | -0.11% |
| 2026-09-20 | 0.093485 | 0.00% |
| 2026-09-19 | 0.093485 | -0.20% |
| 2026-09-18 | 0.093668 | +0.20% |
| 2026-09-17 | 0.093482 | +0.90% |
| 2026-09-16 | 0.092653 | +0.14% |
| 2026-09-15 | 0.092527 | -0.04% |
| 2026-09-14 | 0.092565 | +0.19% |
| 2026-09-13 | 0.09239 | 0.00% |
| 2026-09-12 | 0.09239 | -0.45% |
| Date | 1 SBD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.092808 | +0.03% |
| 2026-09-10 | 0.092784 | +0.38% |
| 2026-09-09 | 0.092428 | -0.20% |
| 2026-09-08 | 0.092613 | -0.10% |
| 2026-09-07 | 0.092708 | +0.35% |
| 2026-09-06 | 0.092388 | -0.00% |
| 2026-09-05 | 0.092388 | -0.03% |
| 2026-09-04 | 0.092414 | -0.16% |
| 2026-09-03 | 0.092559 | -0.15% |
| 2026-09-02 | 0.092695 | +0.37% |
| 2026-09-01 | 0.092351 | -0.03% |
| 2026-08-31 | 0.092382 | +0.38% |
| 2026-08-30 | 0.09203 | -0.00% |
| 2026-08-29 | 0.092033 | -0.02% |
| 2026-08-28 | 0.092052 | — |
SBD to GBP conversion table
1 SBD0.093879 GBP
5 SBD0.4694 GBP
10 SBD0.93879 GBP
25 SBD2.347 GBP
50 SBD4.694 GBP
100 SBD9.3879 GBP
500 SBD46.9396 GBP
1,000 SBD93.8791 GBP
5,000 SBD469.3955 GBP
10,000 SBD938.791 GBP
Get the SBD/GBP rate in your app
One GET request returns the latest SBD → GBP 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/SBD/GBP"fetch('https://rate-api.com/api/v1/pair/SBD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SBD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SBD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SBD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SBD/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SBD = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "SBD",
"to": "GBP"
},
"rate": 0.0939,
"timestamp": 1790432124,
"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
GBP to SBDBritish Pound → Solomon Islands Dollar10.652Convert SBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.