Convert XDR to CAD
IMF Special Drawing Rights → Canadian Dollar
1 XDR = 1.921777 CAD(1 CAD = 0.520352 XDR)
Currency converter
1 XDR =
1.9218 CAD
XDR to CAD: last 30 days
Over the last 30 days, 1 XDR traded between 1.8865 and 1.9815 CAD, averaging 1.9078 CAD. The XDR/CAD rate is up 1.18% since 2026-08-28.
- 30-day high
- 1.9815
- 2026-09-18
- 30-day low
- 1.8865
- 2026-09-03
- 30-day average
- 1.9078
- Days with data: 30
- 30-day change
- +1.18%
- since 2026-08-28
1.9815
1.88652026-08-28 → 2026-09-26
| Date | 1 XDR in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 1.9218 | 0.00% |
| 2026-09-25 | 1.9218 | -0.02% |
| 2026-09-24 | 1.9221 | -0.03% |
| 2026-09-23 | 1.9226 | +0.21% |
| 2026-09-22 | 1.9186 | +0.41% |
| 2026-09-21 | 1.9108 | -0.39% |
| 2026-09-20 | 1.9183 | +0.15% |
| 2026-09-19 | 1.9155 | -3.33% |
| 2026-09-18 | 1.9815 | +3.40% |
| 2026-09-17 | 1.9163 | +0.42% |
| 2026-09-16 | 1.9083 | +0.08% |
| 2026-09-15 | 1.9068 | +0.09% |
| 2026-09-14 | 1.9051 | +0.13% |
| 2026-09-13 | 1.9025 | +0.00% |
| 2026-09-12 | 1.9025 | -0.04% |
| Date | 1 XDR in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 1.9033 | +0.27% |
| 2026-09-10 | 1.8982 | +0.44% |
| 2026-09-09 | 1.8899 | -0.21% |
| 2026-09-08 | 1.8939 | -0.11% |
| 2026-09-07 | 1.8959 | +0.07% |
| 2026-09-06 | 1.8945 | +0.01% |
| 2026-09-05 | 1.8944 | +0.15% |
| 2026-09-04 | 1.8916 | +0.27% |
| 2026-09-03 | 1.8865 | -1.01% |
| 2026-09-02 | 1.9058 | +0.25% |
| 2026-09-01 | 1.9011 | -0.16% |
| 2026-08-31 | 1.9042 | +0.14% |
| 2026-08-30 | 1.9015 | +0.03% |
| 2026-08-29 | 1.9009 | +0.09% |
| 2026-08-28 | 1.8993 | — |
XDR to CAD conversion table
1 XDR1.9218 CAD
5 XDR9.6089 CAD
10 XDR19.2178 CAD
25 XDR48.0444 CAD
50 XDR96.0888 CAD
100 XDR192.1777 CAD
500 XDR960.8884 CAD
1,000 XDR1,921.7768 CAD
5,000 XDR9,608.8839 CAD
10,000 XDR19,217.768 CAD
Get the XDR/CAD rate in your app
One GET request returns the latest XDR → 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/XDR/CAD"fetch('https://rate-api.com/api/v1/pair/XDR/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XDR = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XDR/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XDR = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XDR/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XDR = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "XDR",
"to": "CAD"
},
"rate": 1.9218,
"timestamp": 1790432118,
"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 XDRCanadian Dollar → IMF Special Drawing Rights0.52035Convert XDR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.