Convert CAD to CNY
Canadian Dollar → Chinese Yuan
1 CAD = 4.74676 CNY(1 CNY = 0.21067 CAD)
Currency converter
1 CAD =
4.7468 CNY
CAD to CNY: last 30 days
Over the last 30 days, 1 CAD traded between 4.7468 and 4.872 CNY, averaging 4.818 CNY. The CAD/CNY rate is down 2.15% since 2026-08-29.
- 30-day high
- 4.872
- 2026-09-09
- 30-day low
- 4.7468
- 2026-09-25
- 30-day average
- 4.818
- Days with data: 30
- 30-day change
- -2.15%
- since 2026-08-29
4.872
4.74682026-08-29 → 2026-09-27
| Date | 1 CAD in CNY | Daily change |
|---|---|---|
| 2026-09-27 | 4.7468 | 0.00% |
| 2026-09-26 | 4.7468 | 0.00% |
| 2026-09-25 | 4.7468 | -0.17% |
| 2026-09-24 | 4.7549 | -0.12% |
| 2026-09-23 | 4.7607 | -0.21% |
| 2026-09-22 | 4.7708 | -0.21% |
| 2026-09-21 | 4.7811 | +0.01% |
| 2026-09-20 | 4.7806 | 0.00% |
| 2026-09-19 | 4.7806 | 0.00% |
| 2026-09-18 | 4.7806 | -0.25% |
| 2026-09-17 | 4.7928 | -0.39% |
| 2026-09-16 | 4.8118 | -0.20% |
| 2026-09-15 | 4.8215 | -0.19% |
| 2026-09-14 | 4.8307 | -0.21% |
| 2026-09-13 | 4.8407 | 0.00% |
| Date | 1 CAD in CNY | Daily change |
|---|---|---|
| 2026-09-12 | 4.8407 | 0.00% |
| 2026-09-11 | 4.8407 | -0.27% |
| 2026-09-10 | 4.854 | -0.37% |
| 2026-09-09 | 4.872 | +0.23% |
| 2026-09-08 | 4.8609 | +0.10% |
| 2026-09-07 | 4.856 | -0.14% |
| 2026-09-06 | 4.863 | 0.00% |
| 2026-09-05 | 4.863 | 0.00% |
| 2026-09-04 | 4.863 | -0.18% |
| 2026-09-03 | 4.8717 | +0.93% |
| 2026-09-02 | 4.8269 | -0.28% |
| 2026-09-01 | 4.8404 | +0.02% |
| 2026-08-31 | 4.8392 | -0.25% |
| 2026-08-30 | 4.8512 | 0.00% |
| 2026-08-29 | 4.8512 | — |
CAD to CNY conversion table
1 CAD4.7468 CNY
5 CAD23.7338 CNY
10 CAD47.4676 CNY
25 CAD118.669 CNY
50 CAD237.338 CNY
100 CAD474.676 CNY
500 CAD2,373.38 CNY
1,000 CAD4,746.7601 CNY
5,000 CAD23,733.8 CNY
10,000 CAD47,467.601 CNY
Get the CAD/CNY rate in your app
One GET request returns the latest CAD → 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/CAD/CNY"fetch('https://rate-api.com/api/v1/pair/CAD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/CNY');
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']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "CNY"
},
"rate": 4.7468,
"timestamp": 1790470808,
"date": "2026-09-27"
}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 CADChinese Yuan → Canadian Dollar0.21067Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.