Convert CNY to COP
Chinese Yuan → Colombian Peso
1 CNY = 492.58827 COP(1 COP = 0.00203009 CNY)
Currency converter
1 CNY =
492.5883 COP
CNY to COP: last 30 days
Over the last 30 days, 1 CNY traded between 458.6101 and 496.0247 COP, averaging 472.12 COP. The CNY/COP rate is up 4.87% since 2026-08-28.
- 30-day high
- 496.0247
- 2026-09-24
- 30-day low
- 458.6101
- 2026-09-13
- 30-day average
- 472.12
- Days with data: 30
- 30-day change
- +4.87%
- since 2026-08-28
496.0247
458.61012026-08-28 → 2026-09-26
| Date | 1 CNY in COP | Daily change |
|---|---|---|
| 2026-09-26 | 492.5883 | 0.00% |
| 2026-09-25 | 492.5883 | -0.69% |
| 2026-09-24 | 496.0247 | +1.92% |
| 2026-09-23 | 486.6858 | +1.89% |
| 2026-09-22 | 477.6521 | +0.66% |
| 2026-09-21 | 474.5315 | +0.02% |
| 2026-09-20 | 474.46 | -0.14% |
| 2026-09-19 | 475.1271 | +0.42% |
| 2026-09-18 | 473.1439 | +1.21% |
| 2026-09-17 | 467.5104 | +0.48% |
| 2026-09-16 | 465.2703 | +0.48% |
| 2026-09-15 | 463.0516 | +0.47% |
| 2026-09-14 | 460.8961 | +0.50% |
| 2026-09-13 | 458.6101 | -0.15% |
| 2026-09-12 | 459.2781 | -0.70% |
| Date | 1 CNY in COP | Daily change |
|---|---|---|
| 2026-09-11 | 462.5229 | -0.10% |
| 2026-09-10 | 462.9887 | -0.26% |
| 2026-09-09 | 464.1813 | -0.48% |
| 2026-09-08 | 466.4289 | -0.05% |
| 2026-09-07 | 466.6847 | +0.01% |
| 2026-09-06 | 466.6337 | -0.06% |
| 2026-09-05 | 466.9246 | -0.41% |
| 2026-09-04 | 468.8508 | -0.36% |
| 2026-09-03 | 470.524 | -0.11% |
| 2026-09-02 | 471.0465 | -1.74% |
| 2026-09-01 | 479.3979 | +0.56% |
| 2026-08-31 | 476.7509 | +0.04% |
| 2026-08-30 | 476.5744 | -0.08% |
| 2026-08-29 | 476.9494 | +1.54% |
| 2026-08-28 | 469.7233 | — |
CNY to COP conversion table
1 CNY492.5883 COP
5 CNY2,462.9413 COP
10 CNY4,925.8827 COP
25 CNY12,314.707 COP
50 CNY24,629.413 COP
100 CNY49,258.827 COP
500 CNY246,294.13 COP
1,000 CNY492,588.27 COP
5,000 CNY2,462,941.3 COP
10,000 CNY4,925,882.7 COP
Get the CNY/COP rate in your app
One GET request returns the latest CNY → COP 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/CNY/COP"fetch('https://rate-api.com/api/v1/pair/CNY/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/COP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CNY = {$data['rate']} COP\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "COP"
},
"rate": 492.5883,
"timestamp": 1790432064,
"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
COP to CNYColombian Peso → Chinese Yuan0.0020301Convert CNY to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.