Convert XCD to CNY
East Caribbean Dollar → Chinese Yuan
1 XCD = 2.486383 CNY(1 CNY = 0.402191 XCD)
Currency converter
1 XCD =
2.4864 CNY
XCD to CNY: last 30 days
Over the last 30 days, 1 XCD traded between 2.4732 and 2.4884 CNY, averaging 2.4814 CNY. The XCD/CNY rate is up 0.16% since 2026-08-28.
- 30-day high
- 2.4884
- 2026-08-30
- 30-day low
- 2.4732
- 2026-09-21
- 30-day average
- 2.4814
- Days with data: 30
- 30-day change
- +0.16%
- since 2026-08-28
2.4884
2.47322026-08-28 → 2026-09-26
| Date | 1 XCD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 2.4864 | 0.00% |
| 2026-09-25 | 2.4864 | +0.01% |
| 2026-09-24 | 2.4861 | +0.08% |
| 2026-09-23 | 2.4842 | +0.38% |
| 2026-09-22 | 2.4747 | +0.06% |
| 2026-09-21 | 2.4732 | -0.27% |
| 2026-09-20 | 2.48 | +0.07% |
| 2026-09-19 | 2.4783 | +0.00% |
| 2026-09-18 | 2.4783 | -0.06% |
| 2026-09-17 | 2.4798 | +0.07% |
| 2026-09-16 | 2.478 | -0.05% |
| 2026-09-15 | 2.4792 | +0.05% |
| 2026-09-14 | 2.4779 | -0.26% |
| 2026-09-13 | 2.4844 | +0.09% |
| 2026-09-12 | 2.4822 | +0.16% |
| Date | 1 XCD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 2.4783 | +0.02% |
| 2026-09-10 | 2.4779 | +0.00% |
| 2026-09-09 | 2.4778 | -0.04% |
| 2026-09-08 | 2.4788 | +0.02% |
| 2026-09-07 | 2.4783 | -0.27% |
| 2026-09-06 | 2.485 | +0.07% |
| 2026-09-05 | 2.4833 | +0.14% |
| 2026-09-04 | 2.4798 | -0.09% |
| 2026-09-03 | 2.482 | -0.03% |
| 2026-09-02 | 2.4828 | -0.01% |
| 2026-09-01 | 2.483 | -0.15% |
| 2026-08-31 | 2.4869 | -0.06% |
| 2026-08-30 | 2.4884 | +0.06% |
| 2026-08-29 | 2.4869 | +0.18% |
| 2026-08-28 | 2.4825 | — |
XCD to CNY conversion table
1 XCD2.4864 CNY
5 XCD12.4319 CNY
10 XCD24.8638 CNY
25 XCD62.1596 CNY
50 XCD124.3191 CNY
100 XCD248.6383 CNY
500 XCD1,243.1914 CNY
1,000 XCD2,486.3827 CNY
5,000 XCD12,431.914 CNY
10,000 XCD24,863.827 CNY
Get the XCD/CNY rate in your app
One GET request returns the latest XCD → CNY 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/CNY"fetch('https://rate-api.com/api/v1/pair/XCD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XCD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XCD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XCD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XCD/CNY');
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']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "XCD",
"to": "CNY"
},
"rate": 2.4864,
"timestamp": 1790432087,
"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
CNY to XCDChinese Yuan → East Caribbean Dollar0.40219Convert XCD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.