Convert CNY to NAD
Chinese Yuan → Namibian Dollar
1 CNY = 2.427114 NAD(1 NAD = 0.412012 CNY)
Currency converter
1 CNY =
2.4271 NAD
CNY to NAD: last 30 days
Over the last 30 days, 1 CNY traded between 2.3782 and 2.4486 NAD, averaging 2.4087 NAD. The CNY/NAD rate is up 2.00% since 2026-08-28.
- 30-day high
- 2.4486
- 2026-09-24
- 30-day low
- 2.3782
- 2026-09-05
- 30-day average
- 2.4087
- Days with data: 30
- 30-day change
- +2.00%
- since 2026-08-28
2.4486
2.37822026-08-28 → 2026-09-26
| Date | 1 CNY in NAD | Daily change |
|---|---|---|
| 2026-09-26 | 2.4271 | 0.00% |
| 2026-09-25 | 2.4271 | -0.88% |
| 2026-09-24 | 2.4486 | +0.47% |
| 2026-09-23 | 2.4372 | +0.48% |
| 2026-09-22 | 2.4254 | +0.08% |
| 2026-09-21 | 2.4234 | -0.28% |
| 2026-09-20 | 2.4301 | +0.14% |
| 2026-09-19 | 2.4268 | +0.08% |
| 2026-09-18 | 2.4248 | -0.48% |
| 2026-09-17 | 2.4365 | +0.71% |
| 2026-09-16 | 2.4194 | -0.23% |
| 2026-09-15 | 2.425 | +0.46% |
| 2026-09-14 | 2.414 | +0.44% |
| 2026-09-13 | 2.4034 | -0.09% |
| 2026-09-12 | 2.4056 | -0.50% |
| Date | 1 CNY in NAD | Daily change |
|---|---|---|
| 2026-09-11 | 2.4178 | +1.08% |
| 2026-09-10 | 2.3919 | +0.27% |
| 2026-09-09 | 2.3853 | +0.09% |
| 2026-09-08 | 2.3833 | +0.06% |
| 2026-09-07 | 2.3819 | +0.11% |
| 2026-09-06 | 2.3792 | +0.04% |
| 2026-09-05 | 2.3782 | -0.17% |
| 2026-09-04 | 2.3821 | -0.24% |
| 2026-09-03 | 2.3879 | -0.77% |
| 2026-09-02 | 2.4065 | +0.39% |
| 2026-09-01 | 2.3971 | -0.40% |
| 2026-08-31 | 2.4068 | +0.06% |
| 2026-08-30 | 2.4053 | +0.03% |
| 2026-08-29 | 2.4045 | +1.05% |
| 2026-08-28 | 2.3796 | — |
CNY to NAD conversion table
1 CNY2.4271 NAD
5 CNY12.1356 NAD
10 CNY24.2711 NAD
25 CNY60.6778 NAD
50 CNY121.3557 NAD
100 CNY242.7114 NAD
500 CNY1,213.557 NAD
1,000 CNY2,427.114 NAD
5,000 CNY12,135.57 NAD
10,000 CNY24,271.14 NAD
Get the CNY/NAD rate in your app
One GET request returns the latest CNY → NAD 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/NAD"fetch('https://rate-api.com/api/v1/pair/CNY/NAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CNY = ${data.rate} NAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CNY/NAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CNY = {data['rate']} NAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CNY/NAD');
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']} NAD\n";Example response
{
"success": true,
"pair": {
"from": "CNY",
"to": "NAD"
},
"rate": 2.4271,
"timestamp": 1790429397,
"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
NAD to CNYNamibian Dollar → Chinese Yuan0.41201Convert CNY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.