Convert XCD to CAD
East Caribbean Dollar → Canadian Dollar
1 XCD = 0.523806 CAD(1 CAD = 1.909103 XCD)
Currency converter
1 XCD =
0.52381 CAD
XCD to CAD: last 30 days
Over the last 30 days, 1 XCD traded between 0.50857 and 0.52381 CAD, averaging 0.51468 CAD. The XCD/CAD rate is up 2.36% since 2026-08-28.
- 30-day high
- 0.52381
- 2026-09-25
- 30-day low
- 0.50857
- 2026-09-09
- 30-day average
- 0.51468
- Days with data: 30
- 30-day change
- +2.36%
- since 2026-08-28
0.52381
0.508572026-08-28 → 2026-09-26
| Date | 1 XCD in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.52381 | 0.00% |
| 2026-09-25 | 0.52381 | +0.18% |
| 2026-09-24 | 0.52286 | +0.20% |
| 2026-09-23 | 0.52182 | +0.60% |
| 2026-09-22 | 0.51873 | +0.28% |
| 2026-09-21 | 0.5173 | -0.28% |
| 2026-09-20 | 0.51876 | +0.07% |
| 2026-09-19 | 0.51842 | +0.00% |
| 2026-09-18 | 0.5184 | +0.19% |
| 2026-09-17 | 0.51741 | +0.47% |
| 2026-09-16 | 0.515 | +0.16% |
| 2026-09-15 | 0.51419 | +0.24% |
| 2026-09-14 | 0.51296 | -0.06% |
| 2026-09-13 | 0.51324 | +0.09% |
| 2026-09-12 | 0.51279 | +0.16% |
| Date | 1 XCD in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.51198 | +0.29% |
| 2026-09-10 | 0.51048 | +0.37% |
| 2026-09-09 | 0.50857 | -0.27% |
| 2026-09-08 | 0.50995 | -0.08% |
| 2026-09-07 | 0.51036 | -0.13% |
| 2026-09-06 | 0.511 | +0.07% |
| 2026-09-05 | 0.51065 | +0.14% |
| 2026-09-04 | 0.50994 | +0.09% |
| 2026-09-03 | 0.50948 | -0.95% |
| 2026-09-02 | 0.51435 | +0.27% |
| 2026-09-01 | 0.51298 | -0.18% |
| 2026-08-31 | 0.5139 | +0.19% |
| 2026-08-30 | 0.51294 | +0.06% |
| 2026-08-29 | 0.51264 | +0.18% |
| 2026-08-28 | 0.51172 | — |
XCD to CAD conversion table
1 XCD0.52381 CAD
5 XCD2.619 CAD
10 XCD5.2381 CAD
25 XCD13.0952 CAD
50 XCD26.1903 CAD
100 XCD52.3806 CAD
500 XCD261.9031 CAD
1,000 XCD523.8063 CAD
5,000 XCD2,619.0314 CAD
10,000 XCD5,238.0628 CAD
Get the XCD/CAD rate in your app
One GET request returns the latest XCD → 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/XCD/CAD"fetch('https://rate-api.com/api/v1/pair/XCD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XCD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XCD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XCD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XCD/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XCD = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "XCD",
"to": "CAD"
},
"rate": 0.5238,
"timestamp": 1790432098,
"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 XCDCanadian Dollar → East Caribbean Dollar1.9091Convert XCD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.