Convert CAD to BGN
Canadian Dollar → Bulgarian Lev
1 CAD = 1.212767 BGN(1 BGN = 0.82456 CAD)
Currency converter
1 CAD =
1.2128 BGN
CAD to BGN: last 30 days
Over the last 30 days, 1 CAD traded between 1.2016 and 1.2227 BGN, averaging 1.2165 BGN. The CAD/BGN rate is up 0.05% since 2026-08-28.
- 30-day high
- 1.2227
- 2026-09-03
- 30-day low
- 1.2016
- 2026-09-18
- 30-day average
- 1.2165
- Days with data: 30
- 30-day change
- +0.05%
- since 2026-08-28
1.2227
1.20162026-08-28 → 2026-09-26
| Date | 1 CAD in BGN | Daily change |
|---|---|---|
| 2026-09-26 | 1.2128 | 0.00% |
| 2026-09-25 | 1.2128 | -0.50% |
| 2026-09-24 | 1.2188 | +0.19% |
| 2026-09-23 | 1.2165 | +0.24% |
| 2026-09-22 | 1.2137 | -0.26% |
| 2026-09-21 | 1.2168 | +0.12% |
| 2026-09-20 | 1.2154 | -0.00% |
| 2026-09-19 | 1.2155 | +1.15% |
| 2026-09-18 | 1.2016 | -1.44% |
| 2026-09-17 | 1.2191 | +0.29% |
| 2026-09-16 | 1.2156 | -0.20% |
| 2026-09-15 | 1.218 | +0.04% |
| 2026-09-14 | 1.2175 | +0.06% |
| 2026-09-13 | 1.2168 | -0.00% |
| 2026-09-12 | 1.2168 | +0.03% |
| Date | 1 CAD in BGN | Daily change |
|---|---|---|
| 2026-09-11 | 1.2165 | +0.01% |
| 2026-09-10 | 1.2164 | -0.41% |
| 2026-09-09 | 1.2213 | +0.21% |
| 2026-09-08 | 1.2187 | -0.02% |
| 2026-09-07 | 1.2189 | -0.09% |
| 2026-09-06 | 1.22 | -0.03% |
| 2026-09-05 | 1.2203 | +0.08% |
| 2026-09-04 | 1.2193 | -0.28% |
| 2026-09-03 | 1.2227 | +0.80% |
| 2026-09-02 | 1.213 | -0.06% |
| 2026-09-01 | 1.2137 | -0.12% |
| 2026-08-31 | 1.2152 | -0.28% |
| 2026-08-30 | 1.2186 | -0.03% |
| 2026-08-29 | 1.2189 | +0.55% |
| 2026-08-28 | 1.2122 | — |
CAD to BGN conversion table
1 CAD1.2128 BGN
5 CAD6.0638 BGN
10 CAD12.1277 BGN
25 CAD30.3192 BGN
50 CAD60.6384 BGN
100 CAD121.2767 BGN
500 CAD606.3837 BGN
1,000 CAD1,212.7674 BGN
5,000 CAD6,063.837 BGN
10,000 CAD12,127.674 BGN
Get the CAD/BGN rate in your app
One GET request returns the latest CAD → BGN 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/BGN"fetch('https://rate-api.com/api/v1/pair/CAD/BGN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} BGN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/BGN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} BGN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/BGN');
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']} BGN\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "BGN"
},
"rate": 1.2128,
"timestamp": 1790429365,
"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
BGN to CADBulgarian Lev → Canadian Dollar0.82456Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.