Convert CNY to INR
Chinese Yuan → Indian Rupee
1 CNY = 14.272903 INR(1 INR = 0.0700628 CNY)
Currency converter
1 CNY =
14.2729 INR
CNY to INR: last 30 days
Over the last 30 days, 1 CNY traded between 14.0629 and 14.3156 INR, averaging 14.215 INR. The CNY/INR rate is up 0.56% since 2026-08-28.
- 30-day high
- 14.3156
- 2026-09-18
- 30-day low
- 14.0629
- 2026-09-03
- 30-day average
- 14.215
- Days with data: 30
- 30-day change
- +0.56%
- since 2026-08-28
14.3156
14.06292026-08-28 → 2026-09-26
| Date | 1 CNY in INR | Daily change |
|---|---|---|
| 2026-09-26 | 14.2729 | 0.00% |
| 2026-09-25 | 14.2729 | -0.16% |
| 2026-09-24 | 14.2955 | +0.15% |
| 2026-09-23 | 14.274 | +0.05% |
| 2026-09-22 | 14.267 | -0.31% |
| 2026-09-21 | 14.3113 | -0.03% |
| 2026-09-20 | 14.3156 | 0.00% |
| 2026-09-19 | 14.3156 | 0.00% |
| 2026-09-18 | 14.3156 | +0.09% |
| 2026-09-17 | 14.3034 | -0.03% |
| 2026-09-16 | 14.3072 | +0.07% |
| 2026-09-15 | 14.2978 | +0.37% |
| 2026-09-14 | 14.2448 | -0.00% |
| 2026-09-13 | 14.2453 | 0.00% |
| 2026-09-12 | 14.2453 | 0.00% |
| Date | 1 CNY in INR | Daily change |
|---|---|---|
| 2026-09-11 | 14.2453 | +0.10% |
| 2026-09-10 | 14.2314 | +0.37% |
| 2026-09-09 | 14.179 | +0.34% |
| 2026-09-08 | 14.1316 | +0.37% |
| 2026-09-07 | 14.0799 | -0.00% |
| 2026-09-06 | 14.0801 | 0.00% |
| 2026-09-05 | 14.0801 | 0.00% |
| 2026-09-04 | 14.0801 | +0.12% |
| 2026-09-03 | 14.0629 | -0.47% |
| 2026-09-02 | 14.1293 | +0.03% |
| 2026-09-01 | 14.1246 | -0.27% |
| 2026-08-31 | 14.1628 | -0.21% |
| 2026-08-30 | 14.193 | 0.00% |
| 2026-08-29 | 14.193 | 0.00% |
| 2026-08-28 | 14.193 | — |
CNY to INR conversion table
1 CNY14.2729 INR
5 CNY71.3645 INR
10 CNY142.729 INR
25 CNY356.8226 INR
50 CNY713.6452 INR
100 CNY1,427.2903 INR
500 CNY7,136.4515 INR
1,000 CNY14,272.903 INR
5,000 CNY71,364.515 INR
10,000 CNY142,729.03 INR
Get the CNY/INR rate in your app
One GET request returns the latest CNY → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/CNY/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "INR"
},
"rate": 14.2729,
"timestamp": 1790429436,
"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
INR to CNYIndian Rupee → Chinese Yuan0.070063Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.