Convert BDT to CAD
Bangladeshi Taka → Canadian Dollar
1 BDT = 0.0114831 CAD(1 CAD = 87.084369 BDT)
Currency converter
1 BDT =
0.011483 CAD
BDT to CAD: last 30 days
Over the last 30 days, 1 BDT traded between 0.011182 and 0.011483 CAD, averaging 0.011308 CAD. The BDT/CAD rate is up 2.08% since 2026-08-28.
- 30-day high
- 0.011483
- 2026-09-25
- 30-day low
- 0.011182
- 2026-09-06
- 30-day average
- 0.011308
- Days with data: 30
- 30-day change
- +2.08%
- since 2026-08-28
0.011483
0.0111822026-08-28 → 2026-09-26
| Date | 1 BDT in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.011483 | 0.00% |
| 2026-09-25 | 0.011483 | +0.18% |
| 2026-09-24 | 0.011462 | +0.02% |
| 2026-09-23 | 0.011459 | +0.28% |
| 2026-09-22 | 0.011428 | +0.22% |
| 2026-09-21 | 0.011403 | +0.35% |
| 2026-09-20 | 0.011364 | -0.37% |
| 2026-09-19 | 0.011406 | -0.03% |
| 2026-09-18 | 0.01141 | +0.87% |
| 2026-09-17 | 0.011312 | -0.11% |
| 2026-09-16 | 0.011325 | +0.14% |
| 2026-09-15 | 0.011309 | +0.47% |
| 2026-09-14 | 0.011256 | -0.11% |
| 2026-09-13 | 0.011268 | +0.31% |
| 2026-09-12 | 0.011233 | +0.10% |
| Date | 1 BDT in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.011222 | -0.03% |
| 2026-09-10 | 0.011225 | +0.09% |
| 2026-09-09 | 0.011215 | -0.18% |
| 2026-09-08 | 0.011236 | -0.04% |
| 2026-09-07 | 0.01124 | +0.52% |
| 2026-09-06 | 0.011182 | -0.42% |
| 2026-09-05 | 0.011229 | -0.02% |
| 2026-09-04 | 0.011232 | -0.16% |
| 2026-09-03 | 0.011249 | -0.84% |
| 2026-09-02 | 0.011345 | +0.33% |
| 2026-09-01 | 0.011307 | +0.71% |
| 2026-08-31 | 0.011227 | -0.16% |
| 2026-08-30 | 0.011245 | +0.07% |
| 2026-08-29 | 0.011238 | -0.10% |
| 2026-08-28 | 0.011249 | — |
BDT to CAD conversion table
1 BDT0.011483 CAD
5 BDT0.057416 CAD
10 BDT0.11483 CAD
25 BDT0.28708 CAD
50 BDT0.57416 CAD
100 BDT1.1483 CAD
500 BDT5.7416 CAD
1,000 BDT11.4831 CAD
5,000 BDT57.4156 CAD
10,000 BDT114.8312 CAD
Get the BDT/CAD rate in your app
One GET request returns the latest BDT → 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/BDT/CAD"fetch('https://rate-api.com/api/v1/pair/BDT/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BDT = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BDT/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BDT = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BDT/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BDT = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "BDT",
"to": "CAD"
},
"rate": 0.0115,
"timestamp": 1790435093,
"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 BDTCanadian Dollar → Bangladeshi Taka87.0844Convert BDT to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.