Convert JPY to NZD
Japanese Yen → New Zealand Dollar
1 JPY = 0.0111898 NZD(1 NZD = 89.367416 JPY)
Currency converter
1 JPY =
0.01119 NZD
JPY to NZD: last 30 days
Over the last 30 days, 1 JPY traded between 0.010534 and 0.01121 NZD, averaging 0.010992 NZD. The JPY/NZD rate is up 6.22% since 2026-08-28.
- 30-day high
- 0.01121
- 2026-09-14
- 30-day low
- 0.010534
- 2026-08-28
- 30-day average
- 0.010992
- Days with data: 30
- 30-day change
- +6.22%
- since 2026-08-28
0.01121
0.0105342026-08-28 → 2026-09-26
| Date | 1 JPY in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 0.01119 | 0.00% |
| 2026-09-25 | 0.01119 | +0.78% |
| 2026-09-24 | 0.011103 | -0.20% |
| 2026-09-23 | 0.011126 | +0.22% |
| 2026-09-22 | 0.011102 | +0.13% |
| 2026-09-21 | 0.011087 | -0.03% |
| 2026-09-20 | 0.011091 | 0.00% |
| 2026-09-19 | 0.011091 | 0.00% |
| 2026-09-18 | 0.011091 | -0.84% |
| 2026-09-17 | 0.011185 | -0.07% |
| 2026-09-16 | 0.011193 | -0.12% |
| 2026-09-15 | 0.011206 | -0.04% |
| 2026-09-14 | 0.01121 | +0.52% |
| 2026-09-13 | 0.011152 | 0.00% |
| 2026-09-12 | 0.011152 | 0.00% |
| Date | 1 JPY in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 0.011152 | +0.17% |
| 2026-09-10 | 0.011134 | -0.10% |
| 2026-09-09 | 0.011144 | +0.47% |
| 2026-09-08 | 0.011092 | +0.86% |
| 2026-09-07 | 0.010998 | +1.09% |
| 2026-09-06 | 0.010879 | 0.00% |
| 2026-09-05 | 0.010879 | 0.00% |
| 2026-09-04 | 0.010879 | -0.34% |
| 2026-09-03 | 0.010916 | +1.53% |
| 2026-09-02 | 0.010752 | +1.44% |
| 2026-09-01 | 0.010599 | +0.16% |
| 2026-08-31 | 0.010582 | +0.45% |
| 2026-08-30 | 0.010534 | 0.00% |
| 2026-08-29 | 0.010534 | 0.00% |
| 2026-08-28 | 0.010534 | — |
JPY to NZD conversion table
1 JPY0.01119 NZD
5 JPY0.055949 NZD
10 JPY0.1119 NZD
25 JPY0.27974 NZD
50 JPY0.55949 NZD
100 JPY1.119 NZD
500 JPY5.5949 NZD
1,000 JPY11.1898 NZD
5,000 JPY55.9488 NZD
10,000 JPY111.8976 NZD
Get the JPY/NZD rate in your app
One GET request returns the latest JPY → 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/JPY/NZD"fetch('https://rate-api.com/api/v1/pair/JPY/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/NZD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "NZD"
},
"rate": 0.0112,
"timestamp": 1790447440,
"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 JPYNew Zealand Dollar → Japanese Yen89.3674Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.