Convert EUR to NZD
Euro → New Zealand Dollar
1 EUR = 2.0108 NZD(1 NZD = 0.497315 EUR)
Currency converter
1 EUR =
2.0108 NZD
EUR to NZD: last 30 days
Over the last 30 days, 1 EUR traded between 1.9585 and 2.0108 NZD, averaging 1.9894 NZD. The EUR/NZD rate is up 2.67% since 2026-08-28.
- 30-day high
- 2.0108
- 2026-09-25
- 30-day low
- 1.9585
- 2026-08-28
- 30-day average
- 1.9894
- Days with data: 30
- 30-day change
- +2.67%
- since 2026-08-28
2.0108
1.95852026-08-28 → 2026-09-26
| Date | 1 EUR in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 2.0108 | 0.00% |
| 2026-09-25 | 2.0108 | +0.29% |
| 2026-09-24 | 2.0049 | 0.00% |
| 2026-09-23 | 2.0049 | +0.23% |
| 2026-09-22 | 2.0003 | -0.16% |
| 2026-09-21 | 2.0035 | -0.16% |
| 2026-09-20 | 2.0068 | 0.00% |
| 2026-09-19 | 2.0068 | 0.00% |
| 2026-09-18 | 2.0068 | +0.37% |
| 2026-09-17 | 1.9993 | -0.14% |
| 2026-09-16 | 2.0021 | -0.10% |
| 2026-09-15 | 2.0042 | +0.15% |
| 2026-09-14 | 2.0012 | +0.49% |
| 2026-09-13 | 1.9914 | 0.00% |
| 2026-09-12 | 1.9914 | 0.00% |
| Date | 1 EUR in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 1.9914 | -0.13% |
| 2026-09-10 | 1.994 | +0.19% |
| 2026-09-09 | 1.9903 | +0.13% |
| 2026-09-08 | 1.9877 | +0.50% |
| 2026-09-07 | 1.9779 | +0.12% |
| 2026-09-06 | 1.9755 | 0.00% |
| 2026-09-05 | 1.9755 | 0.00% |
| 2026-09-04 | 1.9755 | -0.13% |
| 2026-09-03 | 1.978 | -0.44% |
| 2026-09-02 | 1.9868 | +0.98% |
| 2026-09-01 | 1.9674 | +0.38% |
| 2026-08-31 | 1.9599 | +0.08% |
| 2026-08-30 | 1.9585 | 0.00% |
| 2026-08-29 | 1.9585 | 0.00% |
| 2026-08-28 | 1.9585 | — |
EUR to NZD conversion table
1 EUR2.0108 NZD
5 EUR10.054 NZD
10 EUR20.108 NZD
25 EUR50.27 NZD
50 EUR100.54 NZD
100 EUR201.08 NZD
500 EUR1,005.4 NZD
1,000 EUR2,010.8 NZD
5,000 EUR10,054 NZD
10,000 EUR20,108 NZD
Get the EUR/NZD rate in your app
One GET request returns the latest EUR → 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/EUR/NZD"fetch('https://rate-api.com/api/v1/pair/EUR/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/NZD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "NZD"
},
"rate": 2.0108,
"timestamp": 1790437937,
"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 EURNew Zealand Dollar → Euro0.49731Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.