Convert CAD to BBD
Canadian Dollar → Barbadian Dollar
1 CAD = 1.41415 BBD(1 BBD = 0.707138 CAD)
Currency converter
1 CAD =
1.4142 BBD
CAD to BBD: last 30 days
Over the last 30 days, 1 CAD traded between 1.4142 and 1.4526 BBD, averaging 1.4374 BBD. The CAD/BBD rate is down 2.04% since 2026-08-28.
- 30-day high
- 1.4526
- 2026-09-09
- 30-day low
- 1.4142
- 2026-09-25
- 30-day average
- 1.4374
- Days with data: 30
- 30-day change
- -2.04%
- since 2026-08-28
1.4526
1.41422026-08-28 → 2026-09-26
| Date | 1 CAD in BBD | Daily change |
|---|---|---|
| 2026-09-26 | 1.4142 | 0.00% |
| 2026-09-25 | 1.4142 | -0.18% |
| 2026-09-24 | 1.4167 | -0.20% |
| 2026-09-23 | 1.4195 | -0.32% |
| 2026-09-22 | 1.4241 | -0.28% |
| 2026-09-21 | 1.4282 | +0.04% |
| 2026-09-20 | 1.4276 | 0.00% |
| 2026-09-19 | 1.4276 | -0.69% |
| 2026-09-18 | 1.4374 | +0.58% |
| 2026-09-17 | 1.4291 | -0.40% |
| 2026-09-16 | 1.4348 | -0.14% |
| 2026-09-15 | 1.4368 | -0.24% |
| 2026-09-14 | 1.4402 | -0.21% |
| 2026-09-13 | 1.4432 | 0.00% |
| 2026-09-12 | 1.4432 | 0.00% |
| Date | 1 CAD in BBD | Daily change |
|---|---|---|
| 2026-09-11 | 1.4432 | -0.30% |
| 2026-09-10 | 1.4476 | -0.35% |
| 2026-09-09 | 1.4526 | +0.27% |
| 2026-09-08 | 1.4488 | +0.11% |
| 2026-09-07 | 1.4472 | -0.14% |
| 2026-09-06 | 1.4493 | 0.00% |
| 2026-09-05 | 1.4493 | 0.00% |
| 2026-09-04 | 1.4493 | -0.06% |
| 2026-09-03 | 1.4501 | +0.96% |
| 2026-09-02 | 1.4363 | -0.27% |
| 2026-09-01 | 1.4401 | -0.01% |
| 2026-08-31 | 1.4403 | -0.23% |
| 2026-08-30 | 1.4436 | 0.00% |
| 2026-08-29 | 1.4436 | 0.00% |
| 2026-08-28 | 1.4436 | — |
CAD to BBD conversion table
1 CAD1.4142 BBD
5 CAD7.0708 BBD
10 CAD14.1415 BBD
25 CAD35.3538 BBD
50 CAD70.7075 BBD
100 CAD141.415 BBD
500 CAD707.0751 BBD
1,000 CAD1,414.1502 BBD
5,000 CAD7,070.7509 BBD
10,000 CAD14,141.502 BBD
Get the CAD/BBD rate in your app
One GET request returns the latest CAD → 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/CAD/BBD"fetch('https://rate-api.com/api/v1/pair/CAD/BBD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} BBD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/BBD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} BBD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/BBD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} BBD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "BBD"
},
"rate": 1.4142,
"timestamp": 1790429306,
"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 CADBarbadian Dollar → Canadian Dollar0.70714Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.