Convert BZD to CAD
Belize Dollar → Canadian Dollar
1 BZD = 0.707138 CAD(1 CAD = 1.41415 BZD)
Currency converter
1 BZD =
0.70714 CAD
BZD to CAD: last 30 days
Over the last 30 days, 1 BZD traded between 0.68413 and 0.70714 CAD, averaging 0.69151 CAD. The BZD/CAD rate is up 2.66% since 2026-08-28.
- 30-day high
- 0.70714
- 2026-09-25
- 30-day low
- 0.68413
- 2026-09-06
- 30-day average
- 0.69151
- Days with data: 30
- 30-day change
- +2.66%
- since 2026-08-28
0.70714
0.684132026-08-28 → 2026-09-26
| Date | 1 BZD 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 | +1.00% |
| 2026-09-22 | 0.69749 | +0.26% |
| 2026-09-21 | 0.6957 | +0.13% |
| 2026-09-20 | 0.69479 | -0.10% |
| 2026-09-19 | 0.6955 | -0.17% |
| 2026-09-18 | 0.69668 | +0.75% |
| 2026-09-17 | 0.69149 | -0.10% |
| 2026-09-16 | 0.69219 | +0.09% |
| 2026-09-15 | 0.69158 | +0.28% |
| 2026-09-14 | 0.68968 | +0.34% |
| 2026-09-13 | 0.68734 | -0.07% |
| 2026-09-12 | 0.68785 | +0.33% |
| Date | 1 BZD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.6856 | -0.11% |
| 2026-09-10 | 0.68637 | +0.27% |
| 2026-09-09 | 0.68451 | -0.20% |
| 2026-09-08 | 0.68591 | -0.06% |
| 2026-09-07 | 0.68632 | +0.32% |
| 2026-09-06 | 0.68413 | -0.13% |
| 2026-09-05 | 0.68499 | -0.18% |
| 2026-09-04 | 0.6862 | +0.16% |
| 2026-09-03 | 0.6851 | -0.89% |
| 2026-09-02 | 0.69129 | +0.13% |
| 2026-09-01 | 0.69038 | +0.59% |
| 2026-08-31 | 0.68635 | -0.09% |
| 2026-08-30 | 0.68697 | -0.09% |
| 2026-08-29 | 0.68762 | -0.17% |
| 2026-08-28 | 0.68881 | — |
BZD to CAD conversion table
1 BZD0.70714 CAD
5 BZD3.5357 CAD
10 BZD7.0714 CAD
25 BZD17.6785 CAD
50 BZD35.3569 CAD
100 BZD70.7138 CAD
500 BZD353.5692 CAD
1,000 BZD707.1385 CAD
5,000 BZD3,535.6924 CAD
10,000 BZD7,071.3847 CAD
Get the BZD/CAD rate in your app
One GET request returns the latest BZD → 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/BZD/CAD"fetch('https://rate-api.com/api/v1/pair/BZD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BZD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BZD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BZD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BZD/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BZD = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "BZD",
"to": "CAD"
},
"rate": 0.7071,
"timestamp": 1790432135,
"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 BZDCanadian Dollar → Belize Dollar1.4142Convert BZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.