Convert CLP to CNY
Chilean Peso → Chinese Yuan
1 CLP = 0.0069694 CNY(1 CNY = 143.48428 CLP)
Currency converter
1 CLP =
0.0069694 CNY
CLP to CNY: last 30 days
Over the last 30 days, 1 CLP traded between 0.0069685 and 0.007254 CNY, averaging 0.0071133 CNY. The CLP/CNY rate is down 3.92% since 2026-08-28.
- 30-day high
- 0.007254
- 2026-08-28
- 30-day low
- 0.0069685
- 2026-09-24
- 30-day average
- 0.0071133
- Days with data: 30
- 30-day change
- -3.92%
- since 2026-08-28
0.007254
0.00696852026-08-28 → 2026-09-26
| Date | 1 CLP in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.0069694 | 0.00% |
| 2026-09-25 | 0.0069694 | +0.01% |
| 2026-09-24 | 0.0069685 | -1.61% |
| 2026-09-23 | 0.0070828 | +0.20% |
| 2026-09-22 | 0.0070686 | +1.36% |
| 2026-09-21 | 0.006974 | -0.09% |
| 2026-09-20 | 0.0069803 | -0.01% |
| 2026-09-19 | 0.0069813 | +0.11% |
| 2026-09-18 | 0.0069736 | -0.54% |
| 2026-09-17 | 0.0070115 | -0.24% |
| 2026-09-16 | 0.0070281 | +0.04% |
| 2026-09-15 | 0.0070255 | -1.61% |
| 2026-09-14 | 0.0071402 | +0.31% |
| 2026-09-13 | 0.0071178 | -0.01% |
| 2026-09-12 | 0.0071184 | -0.15% |
| Date | 1 CLP in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.0071293 | -1.44% |
| 2026-09-10 | 0.0072333 | -0.26% |
| 2026-09-09 | 0.007252 | +0.97% |
| 2026-09-08 | 0.0071825 | -0.22% |
| 2026-09-07 | 0.0071986 | +0.24% |
| 2026-09-06 | 0.0071812 | -0.00% |
| 2026-09-05 | 0.0071814 | -0.20% |
| 2026-09-04 | 0.0071959 | +0.43% |
| 2026-09-03 | 0.0071647 | -0.21% |
| 2026-09-02 | 0.00718 | -0.17% |
| 2026-09-01 | 0.0071924 | -0.29% |
| 2026-08-31 | 0.0072133 | -0.03% |
| 2026-08-30 | 0.0072158 | -0.00% |
| 2026-08-29 | 0.0072161 | -0.52% |
| 2026-08-28 | 0.007254 | — |
CLP to CNY conversion table
1 CLP0.0069694 CNY
5 CLP0.034847 CNY
10 CLP0.069694 CNY
25 CLP0.17424 CNY
50 CLP0.34847 CNY
100 CLP0.69694 CNY
500 CLP3.4847 CNY
1,000 CLP6.9694 CNY
5,000 CLP34.847 CNY
10,000 CLP69.694 CNY
Get the CLP/CNY rate in your app
One GET request returns the latest CLP → 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/CLP/CNY?precision=6"fetch('https://rate-api.com/api/v1/pair/CLP/CNY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CLP = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CLP/CNY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CLP = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CLP/CNY?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CLP = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "CLP",
"to": "CNY"
},
"rate": 0.006969,
"timestamp": 1790435095,
"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 CLPChinese Yuan → Chilean Peso143.4843Convert CLP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.