Convert NZD to CHF
New Zealand Dollar → Swiss Franc
1 NZD = 0.469714 CHF(1 CHF = 2.128957 NZD)
Currency converter
1 NZD =
0.46971 CHF
NZD to CHF: last 30 days
Over the last 30 days, 1 NZD traded between 0.46835 and 0.47838 CHF, averaging 0.47355 CHF. The NZD/CHF rate is down 1.76% since 2026-08-28.
- 30-day high
- 0.47838
- 2026-08-31
- 30-day low
- 0.46835
- 2026-09-23
- 30-day average
- 0.47355
- Days with data: 30
- 30-day change
- -1.76%
- since 2026-08-28
0.47838
0.468352026-08-28 → 2026-09-26
| Date | 1 NZD in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 0.46971 | 0.00% |
| 2026-09-25 | 0.46971 | +0.09% |
| 2026-09-24 | 0.4693 | +0.20% |
| 2026-09-23 | 0.46835 | -0.26% |
| 2026-09-22 | 0.46958 | -0.32% |
| 2026-09-21 | 0.47107 | -0.09% |
| 2026-09-20 | 0.4715 | 0.00% |
| 2026-09-19 | 0.4715 | 0.00% |
| 2026-09-18 | 0.4715 | -0.41% |
| 2026-09-17 | 0.47346 | +0.32% |
| 2026-09-16 | 0.47195 | +0.19% |
| 2026-09-15 | 0.47106 | -0.04% |
| 2026-09-14 | 0.47127 | -0.70% |
| 2026-09-13 | 0.47459 | 0.00% |
| 2026-09-12 | 0.47459 | 0.00% |
| Date | 1 NZD in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 0.47459 | +0.33% |
| 2026-09-10 | 0.47302 | +0.11% |
| 2026-09-09 | 0.4725 | -0.35% |
| 2026-09-08 | 0.47416 | -0.28% |
| 2026-09-07 | 0.47549 | -0.12% |
| 2026-09-06 | 0.47608 | 0.00% |
| 2026-09-05 | 0.47608 | 0.00% |
| 2026-09-04 | 0.47608 | +0.29% |
| 2026-09-03 | 0.47472 | +0.08% |
| 2026-09-02 | 0.47434 | -0.66% |
| 2026-09-01 | 0.47748 | -0.19% |
| 2026-08-31 | 0.47838 | +0.05% |
| 2026-08-30 | 0.47813 | 0.00% |
| 2026-08-29 | 0.47813 | 0.00% |
| 2026-08-28 | 0.47813 | — |
NZD to CHF conversion table
1 NZD0.46971 CHF
5 NZD2.3486 CHF
10 NZD4.6971 CHF
25 NZD11.7428 CHF
50 NZD23.4857 CHF
100 NZD46.9714 CHF
500 NZD234.8568 CHF
1,000 NZD469.7136 CHF
5,000 NZD2,348.5677 CHF
10,000 NZD4,697.1355 CHF
Get the NZD/CHF rate in your app
One GET request returns the latest NZD → CHF 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/CHF"fetch('https://rate-api.com/api/v1/pair/NZD/CHF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/CHF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/CHF');
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']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "CHF"
},
"rate": 0.4697,
"timestamp": 1790437534,
"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
CHF to NZDSwiss Franc → New Zealand Dollar2.129Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.