Convert USD to BBD
US Dollar → Barbadian Dollar
1 USD = 2 BBD(1 BBD = 0.5 USD)
Currency converter
1 USD =
2 BBD
USD to BBD: last 30 days
Over the last 30 days, 1 USD traded between 2 and 2.0138 BBD, averaging 2.0005 BBD. The USD/BBD rate has not changed since 2026-08-28.
- 30-day high
- 2.0138
- 2026-09-18
- 30-day low
- 2
- 2026-08-28
- 30-day average
- 2.0005
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
2.0138
22026-08-28 → 2026-09-26
| Date | 1 USD in BBD | Daily change |
|---|---|---|
| 2026-09-26 | 2 | 0.00% |
| 2026-09-25 | 2 | 0.00% |
| 2026-09-24 | 2 | 0.00% |
| 2026-09-23 | 2 | 0.00% |
| 2026-09-22 | 2 | 0.00% |
| 2026-09-21 | 2 | 0.00% |
| 2026-09-20 | 2 | 0.00% |
| 2026-09-19 | 2 | -0.69% |
| 2026-09-18 | 2.0138 | +0.69% |
| 2026-09-17 | 2 | 0.00% |
| 2026-09-16 | 2 | 0.00% |
| 2026-09-15 | 2 | 0.00% |
| 2026-09-14 | 2 | 0.00% |
| 2026-09-13 | 2 | 0.00% |
| 2026-09-12 | 2 | 0.00% |
| Date | 1 USD in BBD | Daily change |
|---|---|---|
| 2026-09-11 | 2 | 0.00% |
| 2026-09-10 | 2 | 0.00% |
| 2026-09-09 | 2 | 0.00% |
| 2026-09-08 | 2 | 0.00% |
| 2026-09-07 | 2 | 0.00% |
| 2026-09-06 | 2 | 0.00% |
| 2026-09-05 | 2 | 0.00% |
| 2026-09-04 | 2 | 0.00% |
| 2026-09-03 | 2 | 0.00% |
| 2026-09-02 | 2 | 0.00% |
| 2026-09-01 | 2 | 0.00% |
| 2026-08-31 | 2 | 0.00% |
| 2026-08-30 | 2 | 0.00% |
| 2026-08-29 | 2 | 0.00% |
| 2026-08-28 | 2 | — |
USD to BBD conversion table
1 USD2 BBD
5 USD10 BBD
10 USD20 BBD
25 USD50 BBD
50 USD100 BBD
100 USD200 BBD
500 USD1,000 BBD
1,000 USD2,000 BBD
5,000 USD10,000 BBD
10,000 USD20,000 BBD
Get the USD/BBD rate in your app
One GET request returns the latest USD → BBD 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/BBD"fetch('https://rate-api.com/api/v1/pair/USD/BBD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BBD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BBD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BBD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BBD');
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']} BBD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BBD"
},
"rate": 2,
"timestamp": 1790429270,
"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
BBD to USDBarbadian Dollar → US Dollar0.5Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.