Convert CAD to XDR
Canadian Dollar → IMF Special Drawing Rights
1 CAD = 0.520352 XDR(1 XDR = 1.921777 CAD)
Currency converter
1 CAD =
0.52035 XDR
CAD to XDR: last 30 days
Over the last 30 days, 1 CAD traded between 0.50468 and 0.53008 XDR, averaging 0.52419 XDR. The CAD/XDR rate is down 1.17% since 2026-08-28.
- 30-day high
- 0.53008
- 2026-09-03
- 30-day low
- 0.50468
- 2026-09-18
- 30-day average
- 0.52419
- Days with data: 30
- 30-day change
- -1.17%
- since 2026-08-28
0.53008
0.504682026-08-28 → 2026-09-26
| Date | 1 CAD in XDR | Daily change |
|---|---|---|
| 2026-09-26 | 0.52035 | 0.00% |
| 2026-09-25 | 0.52035 | +0.02% |
| 2026-09-24 | 0.52027 | +0.03% |
| 2026-09-23 | 0.52013 | -0.21% |
| 2026-09-22 | 0.52121 | -0.41% |
| 2026-09-21 | 0.52335 | +0.40% |
| 2026-09-20 | 0.52129 | -0.15% |
| 2026-09-19 | 0.52207 | +3.45% |
| 2026-09-18 | 0.50468 | -3.29% |
| 2026-09-17 | 0.52184 | -0.42% |
| 2026-09-16 | 0.52403 | -0.08% |
| 2026-09-15 | 0.52445 | -0.09% |
| 2026-09-14 | 0.52492 | -0.13% |
| 2026-09-13 | 0.52562 | -0.00% |
| 2026-09-12 | 0.52562 | +0.04% |
| Date | 1 CAD in XDR | Daily change |
|---|---|---|
| 2026-09-11 | 0.52539 | -0.27% |
| 2026-09-10 | 0.52683 | -0.44% |
| 2026-09-09 | 0.52913 | +0.21% |
| 2026-09-08 | 0.52801 | +0.11% |
| 2026-09-07 | 0.52744 | -0.07% |
| 2026-09-06 | 0.52783 | -0.01% |
| 2026-09-05 | 0.52788 | -0.15% |
| 2026-09-04 | 0.52867 | -0.27% |
| 2026-09-03 | 0.53008 | +1.02% |
| 2026-09-02 | 0.52471 | -0.25% |
| 2026-09-01 | 0.526 | +0.16% |
| 2026-08-31 | 0.52516 | -0.14% |
| 2026-08-30 | 0.52589 | -0.03% |
| 2026-08-29 | 0.52607 | -0.09% |
| 2026-08-28 | 0.52652 | — |
CAD to XDR conversion table
1 CAD0.52035 XDR
5 CAD2.6018 XDR
10 CAD5.2035 XDR
25 CAD13.0088 XDR
50 CAD26.0176 XDR
100 CAD52.0352 XDR
500 CAD260.1759 XDR
1,000 CAD520.3518 XDR
5,000 CAD2,601.759 XDR
10,000 CAD5,203.518 XDR
Get the CAD/XDR rate in your app
One GET request returns the latest CAD → XDR 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/XDR"fetch('https://rate-api.com/api/v1/pair/CAD/XDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} XDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/XDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} XDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/XDR');
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']} XDR\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "XDR"
},
"rate": 0.5204,
"timestamp": 1790429389,
"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
XDR to CADIMF Special Drawing Rights → Canadian Dollar1.9218Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.