Convert INR to CNY
Indian Rupee → Chinese Yuan
1 INR = 0.0700628 CNY(1 CNY = 14.272903 INR)
Currency converter
1 INR =
0.070063 CNY
INR to CNY: last 30 days
Over the last 30 days, 1 INR traded between 0.069854 and 0.071109 CNY, averaging 0.070351 CNY. The INR/CNY rate is down 0.56% since 2026-08-28.
- 30-day high
- 0.071109
- 2026-09-03
- 30-day low
- 0.069854
- 2026-09-18
- 30-day average
- 0.070351
- Days with data: 30
- 30-day change
- -0.56%
- since 2026-08-28
0.071109
0.0698542026-08-28 → 2026-09-26
| Date | 1 INR in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.070063 | 0.00% |
| 2026-09-25 | 0.070063 | +0.16% |
| 2026-09-24 | 0.069952 | -0.15% |
| 2026-09-23 | 0.070058 | -0.05% |
| 2026-09-22 | 0.070092 | +0.31% |
| 2026-09-21 | 0.069875 | +0.03% |
| 2026-09-20 | 0.069854 | 0.00% |
| 2026-09-19 | 0.069854 | 0.00% |
| 2026-09-18 | 0.069854 | -0.09% |
| 2026-09-17 | 0.069913 | +0.03% |
| 2026-09-16 | 0.069895 | -0.07% |
| 2026-09-15 | 0.069941 | -0.37% |
| 2026-09-14 | 0.070201 | +0.00% |
| 2026-09-13 | 0.070199 | 0.00% |
| 2026-09-12 | 0.070199 | 0.00% |
| Date | 1 INR in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.070199 | -0.10% |
| 2026-09-10 | 0.070267 | -0.37% |
| 2026-09-09 | 0.070527 | -0.33% |
| 2026-09-08 | 0.070763 | -0.37% |
| 2026-09-07 | 0.071023 | +0.00% |
| 2026-09-06 | 0.071022 | 0.00% |
| 2026-09-05 | 0.071022 | 0.00% |
| 2026-09-04 | 0.071022 | -0.12% |
| 2026-09-03 | 0.071109 | +0.47% |
| 2026-09-02 | 0.070775 | -0.03% |
| 2026-09-01 | 0.070798 | +0.27% |
| 2026-08-31 | 0.070607 | +0.21% |
| 2026-08-30 | 0.070457 | 0.00% |
| 2026-08-29 | 0.070457 | 0.00% |
| 2026-08-28 | 0.070457 | — |
INR to CNY conversion table
1 INR0.070063 CNY
5 INR0.35031 CNY
10 INR0.70063 CNY
25 INR1.7516 CNY
50 INR3.5031 CNY
100 INR7.0063 CNY
500 INR35.0314 CNY
1,000 INR70.0628 CNY
5,000 INR350.3142 CNY
10,000 INR700.6283 CNY
Get the INR/CNY rate in your app
One GET request returns the latest INR → 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/INR/CNY"fetch('https://rate-api.com/api/v1/pair/INR/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "CNY"
},
"rate": 0.0701,
"timestamp": 1790429432,
"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 INRChinese Yuan → Indian Rupee14.2729Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.