Convert NZD to AUD
New Zealand Dollar → Australian Dollar
1 NZD = 0.806644 AUD(1 AUD = 1.239704 NZD)
Currency converter
1 NZD =
0.80664 AUD
NZD to AUD: last 30 days
Over the last 30 days, 1 NZD traded between 0.80207 and 0.82629 AUD, averaging 0.81219 AUD. The NZD/AUD rate is down 2.38% since 2026-08-28.
- 30-day high
- 0.82629
- 2026-08-28
- 30-day low
- 0.80207
- 2026-09-18
- 30-day average
- 0.81219
- Days with data: 30
- 30-day change
- -2.38%
- since 2026-08-28
0.82629
0.802072026-08-28 → 2026-09-26
| Date | 1 NZD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.80664 | 0.00% |
| 2026-09-25 | 0.80664 | -0.03% |
| 2026-09-24 | 0.80687 | +0.19% |
| 2026-09-23 | 0.80533 | -0.08% |
| 2026-09-22 | 0.80596 | +0.31% |
| 2026-09-21 | 0.80346 | +0.17% |
| 2026-09-20 | 0.80207 | 0.00% |
| 2026-09-19 | 0.80207 | 0.00% |
| 2026-09-18 | 0.80207 | -0.64% |
| 2026-09-17 | 0.80722 | -0.09% |
| 2026-09-16 | 0.80794 | -0.01% |
| 2026-09-15 | 0.80799 | -0.20% |
| 2026-09-14 | 0.80958 | -0.25% |
| 2026-09-13 | 0.81157 | 0.00% |
| 2026-09-12 | 0.81157 | 0.00% |
| Date | 1 NZD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.81157 | +0.10% |
| 2026-09-10 | 0.81079 | +0.06% |
| 2026-09-09 | 0.81032 | +0.05% |
| 2026-09-08 | 0.80987 | -0.56% |
| 2026-09-07 | 0.81444 | -0.27% |
| 2026-09-06 | 0.81668 | 0.00% |
| 2026-09-05 | 0.81668 | 0.00% |
| 2026-09-04 | 0.81668 | +0.04% |
| 2026-09-03 | 0.81632 | +0.12% |
| 2026-09-02 | 0.81533 | -1.16% |
| 2026-09-01 | 0.82492 | -0.14% |
| 2026-08-31 | 0.82612 | -0.02% |
| 2026-08-30 | 0.82629 | 0.00% |
| 2026-08-29 | 0.82629 | 0.00% |
| 2026-08-28 | 0.82629 | — |
NZD to AUD conversion table
1 NZD0.80664 AUD
5 NZD4.0332 AUD
10 NZD8.0664 AUD
25 NZD20.1661 AUD
50 NZD40.3322 AUD
100 NZD80.6644 AUD
500 NZD403.3221 AUD
1,000 NZD806.6441 AUD
5,000 NZD4,033.2206 AUD
10,000 NZD8,066.4412 AUD
Get the NZD/AUD rate in your app
One GET request returns the latest NZD → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/NZD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "AUD"
},
"rate": 0.8066,
"timestamp": 1790435208,
"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
AUD to NZDAustralian Dollar → New Zealand Dollar1.2397Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.