Convert NZD to GBP
New Zealand Dollar → British Pound
1 NZD = 0.427914 GBP(1 GBP = 2.336917 NZD)
Currency converter
1 NZD =
0.42791 GBP
NZD to GBP: last 30 days
Over the last 30 days, 1 NZD traded between 0.427 and 0.43769 GBP, averaging 0.43148 GBP. The NZD/GBP rate is down 2.23% since 2026-08-28.
- 30-day high
- 0.43769
- 2026-08-28
- 30-day low
- 0.427
- 2026-09-15
- 30-day average
- 0.43148
- Days with data: 30
- 30-day change
- -2.23%
- since 2026-08-28
0.43769
0.4272026-08-28 → 2026-09-26
| Date | 1 NZD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.42791 | 0.00% |
| 2026-09-25 | 0.42791 | -0.23% |
| 2026-09-24 | 0.42888 | +0.04% |
| 2026-09-23 | 0.4287 | -0.03% |
| 2026-09-22 | 0.42884 | +0.16% |
| 2026-09-21 | 0.42815 | +0.05% |
| 2026-09-20 | 0.42795 | 0.00% |
| 2026-09-19 | 0.42795 | 0.00% |
| 2026-09-18 | 0.42795 | -0.31% |
| 2026-09-17 | 0.4293 | +0.25% |
| 2026-09-16 | 0.42824 | +0.29% |
| 2026-09-15 | 0.427 | -0.17% |
| 2026-09-14 | 0.42773 | -0.74% |
| 2026-09-13 | 0.43093 | 0.00% |
| 2026-09-12 | 0.43093 | 0.00% |
| Date | 1 NZD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.43093 | +0.01% |
| 2026-09-10 | 0.43087 | -0.17% |
| 2026-09-09 | 0.43159 | +0.06% |
| 2026-09-08 | 0.43135 | -0.67% |
| 2026-09-07 | 0.43426 | -0.13% |
| 2026-09-06 | 0.43482 | 0.00% |
| 2026-09-05 | 0.43482 | 0.00% |
| 2026-09-04 | 0.43482 | -0.06% |
| 2026-09-03 | 0.43506 | +0.66% |
| 2026-09-02 | 0.43221 | -0.73% |
| 2026-09-01 | 0.43537 | -0.37% |
| 2026-08-31 | 0.43699 | -0.16% |
| 2026-08-30 | 0.43769 | 0.00% |
| 2026-08-29 | 0.43769 | 0.00% |
| 2026-08-28 | 0.43769 | — |
NZD to GBP conversion table
1 NZD0.42791 GBP
5 NZD2.1396 GBP
10 NZD4.2791 GBP
25 NZD10.6979 GBP
50 NZD21.3957 GBP
100 NZD42.7914 GBP
500 NZD213.9571 GBP
1,000 NZD427.9143 GBP
5,000 NZD2,139.5713 GBP
10,000 NZD4,279.1426 GBP
Get the NZD/GBP rate in your app
One GET request returns the latest NZD → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/NZD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NZD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NZD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NZD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NZD/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "NZD",
"to": "GBP"
},
"rate": 0.4279,
"timestamp": 1790432202,
"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
GBP to NZDBritish Pound → New Zealand Dollar2.3369Convert NZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.