Convert NZD to CNY
New Zealand Dollar → Chinese Yuan
1 NZD = 3.806992 CNY(1 CNY = 0.262675 NZD)
Currency converter
1 NZD =
3.807 CNY
NZD to CNY: last 30 days
Over the last 30 days, 1 NZD traded between 3.8058 and 3.9955 CNY, averaging 3.8962 CNY. The NZD/CNY rate is down 4.72% since 2026-08-28.
- 30-day high
- 3.9955
- 2026-08-28
- 30-day low
- 3.8058
- 2026-09-24
- 30-day average
- 3.8962
- Days with data: 30
- 30-day change
- -4.72%
- since 2026-08-28
3.9955
3.80582026-08-28 → 2026-09-26
| Date | 1 NZD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 3.807 | 0.00% |
| 2026-09-25 | 3.807 | +0.03% |
| 2026-09-24 | 3.8058 | -0.31% |
| 2026-09-23 | 3.8175 | -0.57% |
| 2026-09-22 | 3.8396 | -0.00% |
| 2026-09-21 | 3.8398 | +0.39% |
| 2026-09-20 | 3.8248 | 0.00% |
| 2026-09-19 | 3.8248 | 0.00% |
| 2026-09-18 | 3.8248 | -0.70% |
| 2026-09-17 | 3.8518 | -0.34% |
| 2026-09-16 | 3.8649 | +0.02% |
| 2026-09-15 | 3.8641 | -0.21% |
| 2026-09-14 | 3.8721 | -0.84% |
| 2026-09-13 | 3.9049 | 0.00% |
| 2026-09-12 | 3.9049 | 0.00% |
| Date | 1 NZD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 3.9049 | -0.05% |
| 2026-09-10 | 3.9067 | -0.52% |
| 2026-09-09 | 3.9271 | +0.16% |
| 2026-09-08 | 3.9208 | -0.57% |
| 2026-09-07 | 3.9432 | -0.12% |
| 2026-09-06 | 3.9481 | 0.00% |
| 2026-09-05 | 3.9481 | 0.00% |
| 2026-09-04 | 3.9481 | +0.07% |
| 2026-09-03 | 3.9454 | +0.73% |
| 2026-09-02 | 3.917 | -1.09% |
| 2026-09-01 | 3.9601 | -0.39% |
| 2026-08-31 | 3.9757 | -0.50% |
| 2026-08-30 | 3.9955 | 0.00% |
| 2026-08-29 | 3.9955 | 0.00% |
| 2026-08-28 | 3.9955 | — |
NZD to CNY conversion table
1 NZD3.807 CNY
5 NZD19.035 CNY
10 NZD38.0699 CNY
25 NZD95.1748 CNY
50 NZD190.3496 CNY
100 NZD380.6992 CNY
500 NZD1,903.4961 CNY
1,000 NZD3,806.9922 CNY
5,000 NZD19,034.961 CNY
10,000 NZD38,069.922 CNY
Get the NZD/CNY rate in your app
One GET request returns the latest NZD → 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/NZD/CNY"fetch('https://rate-api.com/api/v1/pair/NZD/CNY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/CNY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/CNY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 NZD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "CNY"
},
"rate": 3.807,
"timestamp": 1790432147,
"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 NZDChinese Yuan → New Zealand Dollar0.26267Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.