Convert USD to NZD
US Dollar → New Zealand Dollar
1 USD = 1.763396 NZD(1 NZD = 0.567088 USD)
Currency converter
1 USD =
1.7634 NZD
USD to NZD: last 30 days
Over the last 30 days, 1 USD traded between 1.6821 and 1.7638 NZD, averaging 1.7227 NZD. The USD/NZD rate is up 4.83% since 2026-08-28.
- 30-day high
- 1.7638
- 2026-09-24
- 30-day low
- 1.6821
- 2026-08-28
- 30-day average
- 1.7227
- Days with data: 30
- 30-day change
- +4.83%
- since 2026-08-28
1.7638
1.68212026-08-28 → 2026-09-26
| Date | 1 USD in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 1.7634 | 0.00% |
| 2026-09-25 | 1.7634 | -0.02% |
| 2026-09-24 | 1.7638 | +0.39% |
| 2026-09-23 | 1.757 | +0.69% |
| 2026-09-22 | 1.745 | +0.07% |
| 2026-09-21 | 1.7437 | -0.42% |
| 2026-09-20 | 1.7511 | 0.00% |
| 2026-09-19 | 1.7511 | 0.00% |
| 2026-09-18 | 1.7511 | +0.56% |
| 2026-09-17 | 1.7414 | +0.35% |
| 2026-09-16 | 1.7354 | -0.09% |
| 2026-09-15 | 1.7369 | +0.25% |
| 2026-09-14 | 1.7325 | +0.85% |
| 2026-09-13 | 1.7179 | 0.00% |
| 2026-09-12 | 1.7179 | 0.00% |
| Date | 1 USD in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 1.7179 | +0.08% |
| 2026-09-10 | 1.7166 | +0.50% |
| 2026-09-09 | 1.7081 | -0.20% |
| 2026-09-08 | 1.7115 | +0.56% |
| 2026-09-07 | 1.7019 | +0.12% |
| 2026-09-06 | 1.6998 | 0.00% |
| 2026-09-05 | 1.6998 | 0.00% |
| 2026-09-04 | 1.6998 | -0.19% |
| 2026-09-03 | 1.703 | -0.76% |
| 2026-09-02 | 1.716 | +1.09% |
| 2026-09-01 | 1.6975 | +0.43% |
| 2026-08-31 | 1.6902 | +0.48% |
| 2026-08-30 | 1.6821 | 0.00% |
| 2026-08-29 | 1.6821 | 0.00% |
| 2026-08-28 | 1.6821 | — |
USD to NZD conversion table
1 USD1.7634 NZD
5 USD8.817 NZD
10 USD17.634 NZD
25 USD44.0849 NZD
50 USD88.1698 NZD
100 USD176.3396 NZD
500 USD881.6978 NZD
1,000 USD1,763.3956 NZD
5,000 USD8,816.978 NZD
10,000 USD17,633.956 NZD
Get the USD/NZD rate in your app
One GET request returns the latest USD → 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/USD/NZD"fetch('https://rate-api.com/api/v1/pair/USD/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/NZD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "NZD"
},
"rate": 1.7634,
"timestamp": 1790429340,
"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 USDNew Zealand Dollar → US Dollar0.56709Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.