Convert BMD to CAD
Bermudan Dollar → Canadian Dollar
1 BMD = 1.414277 CAD(1 CAD = 0.707075 BMD)
Currency converter
1 BMD =
1.4143 CAD
BMD to CAD: last 30 days
Over the last 30 days, 1 BMD traded between 1.3768 and 1.4143 CAD, averaging 1.3918 CAD. The BMD/CAD rate is up 2.08% since 2026-08-28.
- 30-day high
- 1.4143
- 2026-09-25
- 30-day low
- 1.3768
- 2026-09-09
- 30-day average
- 1.3918
- Days with data: 30
- 30-day change
- +2.08%
- since 2026-08-28
1.4143
1.37682026-08-28 → 2026-09-26
| Date | 1 BMD in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 1.4143 | 0.00% |
| 2026-09-25 | 1.4143 | +0.18% |
| 2026-09-24 | 1.4117 | +0.20% |
| 2026-09-23 | 1.4089 | +0.32% |
| 2026-09-22 | 1.4044 | +0.29% |
| 2026-09-21 | 1.4004 | -0.04% |
| 2026-09-20 | 1.401 | 0.00% |
| 2026-09-19 | 1.401 | 0.00% |
| 2026-09-18 | 1.401 | +0.11% |
| 2026-09-17 | 1.3995 | +0.40% |
| 2026-09-16 | 1.3939 | +0.14% |
| 2026-09-15 | 1.392 | +0.24% |
| 2026-09-14 | 1.3887 | +0.21% |
| 2026-09-13 | 1.3858 | 0.00% |
| 2026-09-12 | 1.3858 | 0.00% |
| Date | 1 BMD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 1.3858 | +0.30% |
| 2026-09-10 | 1.3816 | +0.35% |
| 2026-09-09 | 1.3768 | -0.27% |
| 2026-09-08 | 1.3805 | -0.11% |
| 2026-09-07 | 1.382 | +0.14% |
| 2026-09-06 | 1.38 | 0.00% |
| 2026-09-05 | 1.38 | 0.00% |
| 2026-09-04 | 1.38 | +0.06% |
| 2026-09-03 | 1.3792 | -0.96% |
| 2026-09-02 | 1.3925 | +0.27% |
| 2026-09-01 | 1.3888 | +0.01% |
| 2026-08-31 | 1.3886 | +0.23% |
| 2026-08-30 | 1.3854 | 0.00% |
| 2026-08-29 | 1.3854 | 0.00% |
| 2026-08-28 | 1.3854 | — |
BMD to CAD conversion table
1 BMD1.4143 CAD
5 BMD7.0714 CAD
10 BMD14.1428 CAD
25 BMD35.3569 CAD
50 BMD70.7138 CAD
100 BMD141.4277 CAD
500 BMD707.1385 CAD
1,000 BMD1,414.2769 CAD
5,000 BMD7,071.3847 CAD
10,000 BMD14,142.769 CAD
Get the BMD/CAD rate in your app
One GET request returns the latest BMD → 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/BMD/CAD"fetch('https://rate-api.com/api/v1/pair/BMD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BMD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BMD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BMD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BMD/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BMD = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "BMD",
"to": "CAD"
},
"rate": 1.4143,
"timestamp": 1790435058,
"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 BMDCanadian Dollar → Bermudan Dollar0.70708Convert BMD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.