Convert NZD to INR
New Zealand Dollar → Indian Rupee
1 NZD = 54.336831 INR(1 INR = 0.0184037 NZD)
Currency converter
1 NZD =
54.3368 INR
NZD to INR: last 30 days
Over the last 30 days, 1 NZD traded between 54.3368 and 56.7089 INR, averaging 55.3803 INR. The NZD/INR rate is down 4.18% since 2026-08-28.
- 30-day high
- 56.7089
- 2026-08-28
- 30-day low
- 54.3368
- 2026-09-25
- 30-day average
- 55.3803
- Days with data: 30
- 30-day change
- -4.18%
- since 2026-08-28
56.7089
54.33682026-08-28 → 2026-09-26
| Date | 1 NZD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 54.3368 | 0.00% |
| 2026-09-25 | 54.3368 | -0.13% |
| 2026-09-24 | 54.4055 | -0.16% |
| 2026-09-23 | 54.4915 | -0.53% |
| 2026-09-22 | 54.7794 | -0.31% |
| 2026-09-21 | 54.9521 | +0.36% |
| 2026-09-20 | 54.7542 | 0.00% |
| 2026-09-19 | 54.7542 | 0.00% |
| 2026-09-18 | 54.7542 | -0.62% |
| 2026-09-17 | 55.0936 | -0.37% |
| 2026-09-16 | 55.2956 | +0.09% |
| 2026-09-15 | 55.2479 | +0.16% |
| 2026-09-14 | 55.1573 | -0.84% |
| 2026-09-13 | 55.6261 | 0.00% |
| 2026-09-12 | 55.6261 | 0.00% |
| Date | 1 NZD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 55.6261 | +0.05% |
| 2026-09-10 | 55.5983 | -0.15% |
| 2026-09-09 | 55.6818 | +0.49% |
| 2026-09-08 | 55.4075 | -0.20% |
| 2026-09-07 | 55.5203 | -0.12% |
| 2026-09-06 | 55.5889 | 0.00% |
| 2026-09-05 | 55.5889 | 0.00% |
| 2026-09-04 | 55.5889 | +0.19% |
| 2026-09-03 | 55.4844 | +0.25% |
| 2026-09-02 | 55.3438 | -1.06% |
| 2026-09-01 | 55.9352 | -0.66% |
| 2026-08-31 | 56.3069 | -0.71% |
| 2026-08-30 | 56.7089 | 0.00% |
| 2026-08-29 | 56.7089 | 0.00% |
| 2026-08-28 | 56.7089 | — |
NZD to INR conversion table
1 NZD54.3368 INR
5 NZD271.6842 INR
10 NZD543.3683 INR
25 NZD1,358.4208 INR
50 NZD2,716.8416 INR
100 NZD5,433.6831 INR
500 NZD27,168.416 INR
1,000 NZD54,336.831 INR
5,000 NZD271,684.16 INR
10,000 NZD543,368.31 INR
Get the NZD/INR rate in your app
One GET request returns the latest NZD → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/NZD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "INR"
},
"rate": 54.3368,
"timestamp": 1790435294,
"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
INR to NZDIndian Rupee → New Zealand Dollar0.018404Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.