Convert CAD to BDT
Canadian Dollar → Bangladeshi Taka
1 CAD = 86.960937 BDT(1 BDT = 0.0114994 CAD)
Currency converter
1 CAD =
86.9609 BDT
CAD to BDT: last 30 days
Over the last 30 days, 1 CAD traded between 86.9609 and 89.4313 BDT, averaging 88.3698 BDT. The CAD/BDT rate is down 2.28% since 2026-08-29.
- 30-day high
- 89.4313
- 2026-09-06
- 30-day low
- 86.9609
- 2026-09-26
- 30-day average
- 88.3698
- Days with data: 30
- 30-day change
- -2.28%
- since 2026-08-29
89.4313
86.96092026-08-29 → 2026-09-27
| Date | 1 CAD in BDT | Daily change |
|---|---|---|
| 2026-09-27 | 86.9609 | 0.00% |
| 2026-09-26 | 86.9609 | -0.14% |
| 2026-09-25 | 87.0844 | -0.18% |
| 2026-09-24 | 87.2447 | -0.02% |
| 2026-09-23 | 87.2645 | -0.27% |
| 2026-09-22 | 87.5049 | -0.21% |
| 2026-09-21 | 87.6934 | -0.35% |
| 2026-09-20 | 87.9993 | +0.38% |
| 2026-09-19 | 87.6701 | +0.03% |
| 2026-09-18 | 87.6431 | -0.86% |
| 2026-09-17 | 88.4019 | +0.11% |
| 2026-09-16 | 88.3024 | -0.14% |
| 2026-09-15 | 88.4276 | -0.47% |
| 2026-09-14 | 88.8428 | +0.11% |
| 2026-09-13 | 88.7489 | -0.31% |
| Date | 1 CAD in BDT | Daily change |
|---|---|---|
| 2026-09-12 | 89.0214 | -0.10% |
| 2026-09-11 | 89.1144 | +0.03% |
| 2026-09-10 | 89.0871 | -0.09% |
| 2026-09-09 | 89.1653 | +0.18% |
| 2026-09-08 | 89.0022 | +0.04% |
| 2026-09-07 | 88.971 | -0.51% |
| 2026-09-06 | 89.4313 | +0.42% |
| 2026-09-05 | 89.0541 | +0.02% |
| 2026-09-04 | 89.0348 | +0.16% |
| 2026-09-03 | 88.894 | +0.85% |
| 2026-09-02 | 88.1473 | -0.33% |
| 2026-09-01 | 88.4394 | -0.71% |
| 2026-08-31 | 89.0682 | +0.16% |
| 2026-08-30 | 88.9284 | -0.07% |
| 2026-08-29 | 88.9866 | — |
CAD to BDT conversion table
1 CAD86.9609 BDT
5 CAD434.8047 BDT
10 CAD869.6094 BDT
25 CAD2,174.0234 BDT
50 CAD4,348.0468 BDT
100 CAD8,696.0937 BDT
500 CAD43,480.468 BDT
1,000 CAD86,960.937 BDT
5,000 CAD434,804.68 BDT
10,000 CAD869,609.37 BDT
Get the CAD/BDT rate in your app
One GET request returns the latest CAD → BDT 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/BDT"fetch('https://rate-api.com/api/v1/pair/CAD/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/BDT');
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']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "BDT"
},
"rate": 86.9609,
"timestamp": 1790470788,
"date": "2026-09-27"
}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
BDT to CADBangladeshi Taka → Canadian Dollar0.011499Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.