Convert XCD to EUR
East Caribbean Dollar → Euro
1 XCD = 0.324801 EUR(1 EUR = 3.07881 XCD)
Currency converter
1 XCD =
0.3248 EUR
XCD to EUR: last 30 days
Over the last 30 days, 1 XCD traded between 0.31702 and 0.32583 EUR, averaging 0.3202 EUR. The XCD/EUR rate is up 2.38% since 2026-08-28.
- 30-day high
- 0.32583
- 2026-09-24
- 30-day low
- 0.31702
- 2026-09-09
- 30-day average
- 0.3202
- Days with data: 30
- 30-day change
- +2.38%
- since 2026-08-28
0.32583
0.317022026-08-28 → 2026-09-26
| Date | 1 XCD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.3248 | 0.00% |
| 2026-09-25 | 0.3248 | -0.32% |
| 2026-09-24 | 0.32583 | +0.39% |
| 2026-09-23 | 0.32457 | +0.73% |
| 2026-09-22 | 0.32222 | +0.23% |
| 2026-09-21 | 0.32149 | -0.50% |
| 2026-09-20 | 0.3231 | +0.07% |
| 2026-09-19 | 0.32289 | +0.00% |
| 2026-09-18 | 0.32288 | +0.27% |
| 2026-09-17 | 0.32202 | +0.55% |
| 2026-09-16 | 0.32025 | +0.04% |
| 2026-09-15 | 0.32013 | +0.11% |
| 2026-09-14 | 0.31978 | +0.09% |
| 2026-09-13 | 0.31949 | +0.09% |
| 2026-09-12 | 0.31921 | +0.16% |
| Date | 1 XCD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.31871 | +0.20% |
| 2026-09-10 | 0.31808 | +0.34% |
| 2026-09-09 | 0.31702 | -0.33% |
| 2026-09-08 | 0.31806 | +0.10% |
| 2026-09-07 | 0.31775 | -0.27% |
| 2026-09-06 | 0.31861 | +0.07% |
| 2026-09-05 | 0.31839 | +0.14% |
| 2026-09-04 | 0.31795 | -0.03% |
| 2026-09-03 | 0.31804 | -0.31% |
| 2026-09-02 | 0.31903 | +0.11% |
| 2026-09-01 | 0.3187 | -0.14% |
| 2026-08-31 | 0.31915 | +0.36% |
| 2026-08-30 | 0.318 | +0.06% |
| 2026-08-29 | 0.31781 | +0.18% |
| 2026-08-28 | 0.31725 | — |
XCD to EUR conversion table
1 XCD0.3248 EUR
5 XCD1.624 EUR
10 XCD3.248 EUR
25 XCD8.12 EUR
50 XCD16.24 EUR
100 XCD32.4801 EUR
500 XCD162.4004 EUR
1,000 XCD324.8008 EUR
5,000 XCD1,624.0041 EUR
10,000 XCD3,248.0082 EUR
Get the XCD/EUR rate in your app
One GET request returns the latest XCD → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/XCD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XCD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XCD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XCD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XCD/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "XCD",
"to": "EUR"
},
"rate": 0.3248,
"timestamp": 1790437533,
"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
EUR to XCDEuro → East Caribbean Dollar3.0788Convert XCD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.