Convert GBP to SBD
British Pound → Solomon Islands Dollar
1 GBP = 10.651998 SBD(1 SBD = 0.0938791 GBP)
Currency converter
1 GBP =
10.652 SBD
GBP to SBD: last 30 days
Over the last 30 days, 1 GBP traded between 10.6111 and 10.866 SBD, averaging 10.768 SBD. The GBP/SBD rate is down 1.95% since 2026-08-28.
- 30-day high
- 10.866
- 2026-08-30
- 30-day low
- 10.6111
- 2026-09-24
- 30-day average
- 10.768
- Days with data: 30
- 30-day change
- -1.95%
- since 2026-08-28
10.866
10.61112026-08-28 → 2026-09-26
| Date | 1 GBP in SBD | Daily change |
|---|---|---|
| 2026-09-26 | 10.652 | 0.00% |
| 2026-09-25 | 10.652 | +0.39% |
| 2026-09-24 | 10.6111 | -0.06% |
| 2026-09-23 | 10.6175 | -0.90% |
| 2026-09-22 | 10.7138 | +0.04% |
| 2026-09-21 | 10.7091 | +0.11% |
| 2026-09-20 | 10.697 | 0.00% |
| 2026-09-19 | 10.697 | +0.20% |
| 2026-09-18 | 10.676 | -0.20% |
| 2026-09-17 | 10.6973 | -0.89% |
| 2026-09-16 | 10.793 | -0.14% |
| 2026-09-15 | 10.8077 | +0.04% |
| 2026-09-14 | 10.8032 | -0.19% |
| 2026-09-13 | 10.8237 | 0.00% |
| 2026-09-12 | 10.8237 | +0.45% |
| Date | 1 GBP in SBD | Daily change |
|---|---|---|
| 2026-09-11 | 10.7749 | -0.03% |
| 2026-09-10 | 10.7778 | -0.38% |
| 2026-09-09 | 10.8192 | +0.20% |
| 2026-09-08 | 10.7977 | +0.10% |
| 2026-09-07 | 10.7866 | -0.35% |
| 2026-09-06 | 10.824 | +0.00% |
| 2026-09-05 | 10.824 | +0.03% |
| 2026-09-04 | 10.8209 | +0.16% |
| 2026-09-03 | 10.8039 | +0.15% |
| 2026-09-02 | 10.7881 | -0.37% |
| 2026-09-01 | 10.8283 | +0.03% |
| 2026-08-31 | 10.8246 | -0.38% |
| 2026-08-30 | 10.866 | +0.00% |
| 2026-08-29 | 10.8657 | +0.02% |
| 2026-08-28 | 10.8635 | — |
GBP to SBD conversion table
1 GBP10.652 SBD
5 GBP53.26 SBD
10 GBP106.52 SBD
25 GBP266.3 SBD
50 GBP532.5999 SBD
100 GBP1,065.1998 SBD
500 GBP5,325.999 SBD
1,000 GBP10,651.998 SBD
5,000 GBP53,259.99 SBD
10,000 GBP106,519.98 SBD
Get the GBP/SBD rate in your app
One GET request returns the latest GBP → 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/GBP/SBD"fetch('https://rate-api.com/api/v1/pair/GBP/SBD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} SBD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/SBD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} SBD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/SBD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} SBD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "SBD"
},
"rate": 10.652,
"timestamp": 1790447448,
"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 GBPSolomon Islands Dollar → British Pound0.093879Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.