Convert CHF to NZD
Swiss Franc → New Zealand Dollar
1 CHF = 2.128957 NZD(1 NZD = 0.469714 CHF)
Currency converter
1 CHF =
2.129 NZD
CHF to NZD: last 30 days
Over the last 30 days, 1 CHF traded between 2.0904 and 2.1351 NZD, averaging 2.1118 NZD. The CHF/NZD rate is up 1.79% since 2026-08-28.
- 30-day high
- 2.1351
- 2026-09-23
- 30-day low
- 2.0904
- 2026-08-31
- 30-day average
- 2.1118
- Days with data: 30
- 30-day change
- +1.79%
- since 2026-08-28
2.1351
2.09042026-08-28 → 2026-09-26
| Date | 1 CHF in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 2.129 | 0.00% |
| 2026-09-25 | 2.129 | -0.09% |
| 2026-09-24 | 2.1308 | -0.20% |
| 2026-09-23 | 2.1351 | +0.26% |
| 2026-09-22 | 2.1296 | +0.32% |
| 2026-09-21 | 2.1228 | +0.09% |
| 2026-09-20 | 2.1209 | 0.00% |
| 2026-09-19 | 2.1209 | 0.00% |
| 2026-09-18 | 2.1209 | +0.42% |
| 2026-09-17 | 2.1121 | -0.32% |
| 2026-09-16 | 2.1189 | -0.19% |
| 2026-09-15 | 2.1229 | +0.04% |
| 2026-09-14 | 2.1219 | +0.71% |
| 2026-09-13 | 2.1071 | 0.00% |
| 2026-09-12 | 2.1071 | 0.00% |
| Date | 1 CHF in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 2.1071 | -0.33% |
| 2026-09-10 | 2.1141 | -0.11% |
| 2026-09-09 | 2.1164 | +0.35% |
| 2026-09-08 | 2.109 | +0.28% |
| 2026-09-07 | 2.1031 | +0.12% |
| 2026-09-06 | 2.1005 | 0.00% |
| 2026-09-05 | 2.1005 | 0.00% |
| 2026-09-04 | 2.1005 | -0.29% |
| 2026-09-03 | 2.1065 | -0.08% |
| 2026-09-02 | 2.1082 | +0.66% |
| 2026-09-01 | 2.0943 | +0.19% |
| 2026-08-31 | 2.0904 | -0.05% |
| 2026-08-30 | 2.0915 | 0.00% |
| 2026-08-29 | 2.0915 | 0.00% |
| 2026-08-28 | 2.0915 | — |
CHF to NZD conversion table
1 CHF2.129 NZD
5 CHF10.6448 NZD
10 CHF21.2896 NZD
25 CHF53.2239 NZD
50 CHF106.4479 NZD
100 CHF212.8957 NZD
500 CHF1,064.4786 NZD
1,000 CHF2,128.9571 NZD
5,000 CHF10,644.786 NZD
10,000 CHF21,289.571 NZD
Get the CHF/NZD rate in your app
One GET request returns the latest CHF → NZD 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/CHF/NZD"fetch('https://rate-api.com/api/v1/pair/CHF/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/NZD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "NZD"
},
"rate": 2.129,
"timestamp": 1790429341,
"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
NZD to CHFNew Zealand Dollar → Swiss Franc0.46971Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.