Convert BND to CAD
Brunei Dollar → Canadian Dollar
1 BND = 1.107396 CAD(1 CAD = 0.90302 BND)
Currency converter
1 BND =
1.1074 CAD
BND to CAD: last 30 days
Over the last 30 days, 1 BND traded between 1.0862 and 1.1074 CAD, averaging 1.0943 CAD. The BND/CAD rate is up 1.59% since 2026-08-28.
- 30-day high
- 1.1074
- 2026-09-25
- 30-day low
- 1.0862
- 2026-09-03
- 30-day average
- 1.0943
- Days with data: 30
- 30-day change
- +1.59%
- since 2026-08-28
1.1074
1.08622026-08-28 → 2026-09-26
| Date | 1 BND in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 1.1074 | 0.00% |
| 2026-09-25 | 1.1074 | +0.40% |
| 2026-09-24 | 1.103 | +0.07% |
| 2026-09-23 | 1.1021 | +0.10% |
| 2026-09-22 | 1.1011 | +0.29% |
| 2026-09-21 | 1.0979 | -0.00% |
| 2026-09-20 | 1.0979 | -0.01% |
| 2026-09-19 | 1.098 | -0.01% |
| 2026-09-18 | 1.0981 | +0.15% |
| 2026-09-17 | 1.0965 | +0.14% |
| 2026-09-16 | 1.0949 | +0.05% |
| 2026-09-15 | 1.0943 | +0.00% |
| 2026-09-14 | 1.0943 | +0.04% |
| 2026-09-13 | 1.0939 | -0.01% |
| 2026-09-12 | 1.0939 | +0.13% |
| Date | 1 BND in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 1.0926 | -0.04% |
| 2026-09-10 | 1.093 | +0.39% |
| 2026-09-09 | 1.0888 | -0.25% |
| 2026-09-08 | 1.0915 | +0.11% |
| 2026-09-07 | 1.0903 | +0.11% |
| 2026-09-06 | 1.089 | +0.11% |
| 2026-09-05 | 1.0878 | -0.10% |
| 2026-09-04 | 1.0889 | +0.25% |
| 2026-09-03 | 1.0862 | -0.66% |
| 2026-09-02 | 1.0934 | +0.14% |
| 2026-09-01 | 1.0919 | +0.09% |
| 2026-08-31 | 1.0909 | +0.28% |
| 2026-08-30 | 1.0878 | +0.10% |
| 2026-08-29 | 1.0867 | -0.31% |
| 2026-08-28 | 1.0901 | — |
BND to CAD conversion table
1 BND1.1074 CAD
5 BND5.537 CAD
10 BND11.074 CAD
25 BND27.6849 CAD
50 BND55.3698 CAD
100 BND110.7396 CAD
500 BND553.6977 CAD
1,000 BND1,107.3955 CAD
5,000 BND5,536.9773 CAD
10,000 BND11,073.955 CAD
Get the BND/CAD rate in your app
One GET request returns the latest BND → 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/BND/CAD"fetch('https://rate-api.com/api/v1/pair/BND/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BND = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BND/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BND = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BND/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BND = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "BND",
"to": "CAD"
},
"rate": 1.1074,
"timestamp": 1790437534,
"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 BNDCanadian Dollar → Brunei Dollar0.90302Convert BND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.