Convert NZD to JPY
New Zealand Dollar → Japanese Yen
1 NZD = 89.367416 JPY(1 JPY = 0.0111898 NZD)
Currency converter
1 NZD =
89.3674 JPY
NZD to JPY: last 30 days
Over the last 30 days, 1 NZD traded between 89.2063 and 94.929 JPY, averaging 91.01 JPY. The NZD/JPY rate is down 5.86% since 2026-08-28.
- 30-day high
- 94.929
- 2026-08-28
- 30-day low
- 89.2063
- 2026-09-14
- 30-day average
- 91.01
- Days with data: 30
- 30-day change
- -5.86%
- since 2026-08-28
94.929
89.20632026-08-28 → 2026-09-26
| Date | 1 NZD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 89.3674 | 0.00% |
| 2026-09-25 | 89.3674 | -0.77% |
| 2026-09-24 | 90.0643 | +0.21% |
| 2026-09-23 | 89.8798 | -0.22% |
| 2026-09-22 | 90.0745 | -0.13% |
| 2026-09-21 | 90.1933 | +0.03% |
| 2026-09-20 | 90.1662 | 0.00% |
| 2026-09-19 | 90.1662 | 0.00% |
| 2026-09-18 | 90.1662 | +0.85% |
| 2026-09-17 | 89.4051 | +0.07% |
| 2026-09-16 | 89.3454 | +0.12% |
| 2026-09-15 | 89.2395 | +0.04% |
| 2026-09-14 | 89.2063 | -0.51% |
| 2026-09-13 | 89.6676 | 0.00% |
| 2026-09-12 | 89.6676 | 0.00% |
| Date | 1 NZD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 89.6676 | -0.17% |
| 2026-09-10 | 89.8171 | +0.10% |
| 2026-09-09 | 89.7313 | -0.47% |
| 2026-09-08 | 90.1548 | -0.85% |
| 2026-09-07 | 90.9278 | -1.08% |
| 2026-09-06 | 91.9226 | 0.00% |
| 2026-09-05 | 91.9226 | 0.00% |
| 2026-09-04 | 91.9226 | +0.34% |
| 2026-09-03 | 91.6089 | -1.50% |
| 2026-09-02 | 93.007 | -1.42% |
| 2026-09-01 | 94.3505 | -0.16% |
| 2026-08-31 | 94.5036 | -0.45% |
| 2026-08-30 | 94.929 | 0.00% |
| 2026-08-29 | 94.929 | 0.00% |
| 2026-08-28 | 94.929 | — |
NZD to JPY conversion table
1 NZD89.3674 JPY
5 NZD446.8371 JPY
10 NZD893.6742 JPY
25 NZD2,234.1854 JPY
50 NZD4,468.3708 JPY
100 NZD8,936.7416 JPY
500 NZD44,683.708 JPY
1,000 NZD89,367.416 JPY
5,000 NZD446,837.08 JPY
10,000 NZD893,674.16 JPY
Get the NZD/JPY rate in your app
One GET request returns the latest NZD → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/NZD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "JPY"
},
"rate": 89.3674,
"timestamp": 1790435209,
"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
JPY to NZDJapanese Yen → New Zealand Dollar0.01119Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.