Convert BBD to GBP
Barbadian Dollar → British Pound
1 BBD = 0.377291 GBP(1 GBP = 2.650474 BBD)
Currency converter
1 BBD =
0.37729 GBP
BBD to GBP: last 30 days
Over the last 30 days, 1 BBD traded between 0.36812 and 0.37823 GBP, averaging 0.37152 GBP. The BBD/GBP rate is up 2.49% since 2026-08-28.
- 30-day high
- 0.37823
- 2026-09-24
- 30-day low
- 0.36812
- 2026-08-28
- 30-day average
- 0.37152
- Days with data: 30
- 30-day change
- +2.49%
- since 2026-08-28
0.37823
0.368122026-08-28 → 2026-09-26
| Date | 1 BBD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.37729 | 0.00% |
| 2026-09-25 | 0.37729 | -0.25% |
| 2026-09-24 | 0.37823 | +0.43% |
| 2026-09-23 | 0.37661 | +0.65% |
| 2026-09-22 | 0.37416 | +0.24% |
| 2026-09-21 | 0.37328 | -0.38% |
| 2026-09-20 | 0.3747 | 0.00% |
| 2026-09-19 | 0.3747 | +0.69% |
| 2026-09-18 | 0.37212 | -0.45% |
| 2026-09-17 | 0.37379 | +0.59% |
| 2026-09-16 | 0.37159 | +0.20% |
| 2026-09-15 | 0.37083 | +0.08% |
| 2026-09-14 | 0.37052 | +0.10% |
| 2026-09-13 | 0.37015 | 0.00% |
| 2026-09-12 | 0.37015 | 0.00% |
| Date | 1 BBD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.37015 | +0.09% |
| 2026-09-10 | 0.36982 | +0.33% |
| 2026-09-09 | 0.3686 | -0.14% |
| 2026-09-08 | 0.36913 | -0.11% |
| 2026-09-07 | 0.36953 | -0.01% |
| 2026-09-06 | 0.36955 | 0.00% |
| 2026-09-05 | 0.36955 | 0.00% |
| 2026-09-04 | 0.36955 | -0.24% |
| 2026-09-03 | 0.37045 | -0.10% |
| 2026-09-02 | 0.37084 | +0.36% |
| 2026-09-01 | 0.36952 | +0.06% |
| 2026-08-31 | 0.3693 | +0.32% |
| 2026-08-30 | 0.36812 | 0.00% |
| 2026-08-29 | 0.36812 | 0.00% |
| 2026-08-28 | 0.36812 | — |
BBD to GBP conversion table
1 BBD0.37729 GBP
5 BBD1.8865 GBP
10 BBD3.7729 GBP
25 BBD9.4323 GBP
50 BBD18.8646 GBP
100 BBD37.7291 GBP
500 BBD188.6455 GBP
1,000 BBD377.2911 GBP
5,000 BBD1,886.4553 GBP
10,000 BBD3,772.9106 GBP
Get the BBD/GBP rate in your app
One GET request returns the latest BBD → 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/BBD/GBP"fetch('https://rate-api.com/api/v1/pair/BBD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BBD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BBD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BBD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BBD/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BBD = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "BBD",
"to": "GBP"
},
"rate": 0.3773,
"timestamp": 1790432088,
"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 BBDBritish Pound → Barbadian Dollar2.6505Convert BBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.