Convert CAD to XCD
Canadian Dollar → East Caribbean Dollar
1 CAD = 1.909103 XCD(1 XCD = 0.523806 CAD)
Currency converter
1 CAD =
1.9091 XCD
CAD to XCD: last 30 days
Over the last 30 days, 1 CAD traded between 1.9091 and 1.9663 XCD, averaging 1.9431 XCD. The CAD/XCD rate is down 2.31% since 2026-08-28.
- 30-day high
- 1.9663
- 2026-09-09
- 30-day low
- 1.9091
- 2026-09-25
- 30-day average
- 1.9431
- Days with data: 30
- 30-day change
- -2.31%
- since 2026-08-28
1.9663
1.90912026-08-28 → 2026-09-26
| Date | 1 CAD in XCD | Daily change |
|---|---|---|
| 2026-09-26 | 1.9091 | 0.00% |
| 2026-09-25 | 1.9091 | -0.18% |
| 2026-09-24 | 1.9126 | -0.20% |
| 2026-09-23 | 1.9164 | -0.59% |
| 2026-09-22 | 1.9278 | -0.28% |
| 2026-09-21 | 1.9331 | +0.28% |
| 2026-09-20 | 1.9277 | -0.07% |
| 2026-09-19 | 1.929 | -0.00% |
| 2026-09-18 | 1.929 | -0.19% |
| 2026-09-17 | 1.9327 | -0.47% |
| 2026-09-16 | 1.9418 | -0.16% |
| 2026-09-15 | 1.9448 | -0.24% |
| 2026-09-14 | 1.9495 | +0.06% |
| 2026-09-13 | 1.9484 | -0.09% |
| 2026-09-12 | 1.9501 | -0.16% |
| Date | 1 CAD in XCD | Daily change |
|---|---|---|
| 2026-09-11 | 1.9532 | -0.29% |
| 2026-09-10 | 1.9589 | -0.37% |
| 2026-09-09 | 1.9663 | +0.27% |
| 2026-09-08 | 1.961 | +0.08% |
| 2026-09-07 | 1.9594 | +0.13% |
| 2026-09-06 | 1.957 | -0.07% |
| 2026-09-05 | 1.9583 | -0.14% |
| 2026-09-04 | 1.961 | -0.09% |
| 2026-09-03 | 1.9628 | +0.96% |
| 2026-09-02 | 1.9442 | -0.27% |
| 2026-09-01 | 1.9494 | +0.18% |
| 2026-08-31 | 1.9459 | -0.19% |
| 2026-08-30 | 1.9496 | -0.06% |
| 2026-08-29 | 1.9507 | -0.18% |
| 2026-08-28 | 1.9542 | — |
CAD to XCD conversion table
1 CAD1.9091 XCD
5 CAD9.5455 XCD
10 CAD19.091 XCD
25 CAD47.7276 XCD
50 CAD95.4551 XCD
100 CAD190.9103 XCD
500 CAD954.5514 XCD
1,000 CAD1,909.1027 XCD
5,000 CAD9,545.5137 XCD
10,000 CAD19,091.027 XCD
Get the CAD/XCD rate in your app
One GET request returns the latest CAD → XCD 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/XCD"fetch('https://rate-api.com/api/v1/pair/CAD/XCD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} XCD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/XCD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} XCD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/XCD');
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']} XCD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "XCD"
},
"rate": 1.9091,
"timestamp": 1790429357,
"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
XCD to CADEast Caribbean Dollar → Canadian Dollar0.52381Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.