Convert BBD to CAD
Barbadian Dollar → Canadian Dollar
1 BBD = 0.707138 CAD(1 CAD = 1.41415 BBD)
Currency converter
1 BBD =
0.70714 CAD
BBD to CAD: last 30 days
Over the last 30 days, 1 BBD traded between 0.6884 and 0.70714 CAD, averaging 0.69575 CAD. The BBD/CAD rate is up 2.08% since 2026-08-28.
- 30-day high
- 0.70714
- 2026-09-25
- 30-day low
- 0.6884
- 2026-09-09
- 30-day average
- 0.69575
- Days with data: 30
- 30-day change
- +2.08%
- since 2026-08-28
0.70714
0.68842026-08-28 → 2026-09-26
| Date | 1 BBD in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.70714 | 0.00% |
| 2026-09-25 | 0.70714 | +0.18% |
| 2026-09-24 | 0.70586 | +0.20% |
| 2026-09-23 | 0.70445 | +0.32% |
| 2026-09-22 | 0.7022 | +0.29% |
| 2026-09-21 | 0.7002 | -0.04% |
| 2026-09-20 | 0.7005 | 0.00% |
| 2026-09-19 | 0.7005 | +0.69% |
| 2026-09-18 | 0.69568 | -0.58% |
| 2026-09-17 | 0.69975 | +0.40% |
| 2026-09-16 | 0.69695 | +0.14% |
| 2026-09-15 | 0.696 | +0.24% |
| 2026-09-14 | 0.69435 | +0.21% |
| 2026-09-13 | 0.6929 | 0.00% |
| 2026-09-12 | 0.6929 | 0.00% |
| Date | 1 BBD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.6929 | +0.30% |
| 2026-09-10 | 0.6908 | +0.35% |
| 2026-09-09 | 0.6884 | -0.27% |
| 2026-09-08 | 0.69025 | -0.11% |
| 2026-09-07 | 0.691 | +0.14% |
| 2026-09-06 | 0.69 | 0.00% |
| 2026-09-05 | 0.69 | 0.00% |
| 2026-09-04 | 0.69 | +0.06% |
| 2026-09-03 | 0.6896 | -0.96% |
| 2026-09-02 | 0.69625 | +0.27% |
| 2026-09-01 | 0.6944 | +0.01% |
| 2026-08-31 | 0.6943 | +0.23% |
| 2026-08-30 | 0.6927 | 0.00% |
| 2026-08-29 | 0.6927 | 0.00% |
| 2026-08-28 | 0.6927 | — |
BBD to CAD conversion table
1 BBD0.70714 CAD
5 BBD3.5357 CAD
10 BBD7.0714 CAD
25 BBD17.6785 CAD
50 BBD35.3569 CAD
100 BBD70.7138 CAD
500 BBD353.5692 CAD
1,000 BBD707.1385 CAD
5,000 BBD3,535.6924 CAD
10,000 BBD7,071.3847 CAD
Get the BBD/CAD rate in your app
One GET request returns the latest BBD → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/BBD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BBD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BBD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BBD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BBD/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "BBD",
"to": "CAD"
},
"rate": 0.7071,
"timestamp": 1790432062,
"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
CAD to BBDCanadian Dollar → Barbadian Dollar1.4142Convert BBD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.