Convert CNY to VES
Chinese Yuan → Venezuelan Bolívar
1 CNY = 127.1088 VES(1 VES = 0.00786728 CNY)
Currency converter
1 CNY =
127.1088 VES
CNY to VES: last 30 days
Over the last 30 days, 1 CNY traded between 117.5939 and 127.1088 VES, averaging 122.7688 VES. The CNY/VES rate is up 8.09% since 2026-08-28.
- 30-day high
- 127.1088
- 2026-09-25
- 30-day low
- 117.5939
- 2026-08-28
- 30-day average
- 122.7688
- Days with data: 30
- 30-day change
- +8.09%
- since 2026-08-28
127.1088
117.59392026-08-28 → 2026-09-26
| Date | 1 CNY in VES | Daily change |
|---|---|---|
| 2026-09-26 | 127.1088 | 0.00% |
| 2026-09-25 | 127.1088 | +0.05% |
| 2026-09-24 | 127.0417 | +0.04% |
| 2026-09-23 | 126.9857 | +0.03% |
| 2026-09-22 | 126.9445 | +0.23% |
| 2026-09-21 | 126.6469 | +0.10% |
| 2026-09-20 | 126.5238 | -0.03% |
| 2026-09-19 | 126.5557 | +0.26% |
| 2026-09-18 | 126.2325 | +0.10% |
| 2026-09-17 | 126.1111 | +0.91% |
| 2026-09-16 | 124.9794 | +0.15% |
| 2026-09-15 | 124.7886 | +1.25% |
| 2026-09-14 | 123.2527 | -0.45% |
| 2026-09-13 | 123.8132 | -0.58% |
| 2026-09-12 | 124.5348 | +1.76% |
| Date | 1 CNY in VES | Daily change |
|---|---|---|
| 2026-09-11 | 122.3762 | +0.27% |
| 2026-09-10 | 122.0493 | +0.38% |
| 2026-09-09 | 121.5818 | +0.81% |
| 2026-09-08 | 120.6056 | +0.06% |
| 2026-09-07 | 120.5338 | +0.35% |
| 2026-09-06 | 120.1183 | -0.02% |
| 2026-09-05 | 120.1427 | +0.39% |
| 2026-09-04 | 119.6787 | +0.37% |
| 2026-09-03 | 119.2334 | +0.19% |
| 2026-09-02 | 119.0029 | +0.48% |
| 2026-09-01 | 118.4293 | +0.51% |
| 2026-08-31 | 117.8333 | +0.19% |
| 2026-08-30 | 117.6058 | -0.04% |
| 2026-08-29 | 117.6507 | +0.05% |
| 2026-08-28 | 117.5939 | — |
CNY to VES conversion table
1 CNY127.1088 VES
5 CNY635.544 VES
10 CNY1,271.088 VES
25 CNY3,177.7199 VES
50 CNY6,355.4398 VES
100 CNY12,710.88 VES
500 CNY63,554.398 VES
1,000 CNY127,108.8 VES
5,000 CNY635,543.98 VES
10,000 CNY1,271,088 VES
Get the CNY/VES rate in your app
One GET request returns the latest CNY → VES 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/VES"fetch('https://rate-api.com/api/v1/pair/CNY/VES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} VES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/VES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} VES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/VES');
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']} VES\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "VES"
},
"rate": 127.1088,
"timestamp": 1790447440,
"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
VES to CNYVenezuelan Bolívar → Chinese Yuan0.0078673Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.