Convert GBP to NZD
British Pound → New Zealand Dollar
1 GBP = 2.336917 NZD(1 NZD = 0.427914 GBP)
Currency converter
1 GBP =
2.3369 NZD
GBP to NZD: last 30 days
Over the last 30 days, 1 GBP traded between 2.2847 and 2.3419 NZD, averaging 2.3177 NZD. The GBP/NZD rate is up 2.28% since 2026-08-28.
- 30-day high
- 2.3419
- 2026-09-15
- 30-day low
- 2.2847
- 2026-08-28
- 30-day average
- 2.3177
- Days with data: 30
- 30-day change
- +2.28%
- since 2026-08-28
2.3419
2.28472026-08-28 → 2026-09-26
| Date | 1 GBP in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 2.3369 | 0.00% |
| 2026-09-25 | 2.3369 | +0.23% |
| 2026-09-24 | 2.3317 | -0.04% |
| 2026-09-23 | 2.3326 | +0.03% |
| 2026-09-22 | 2.3319 | -0.16% |
| 2026-09-21 | 2.3356 | -0.05% |
| 2026-09-20 | 2.3367 | 0.00% |
| 2026-09-19 | 2.3367 | 0.00% |
| 2026-09-18 | 2.3367 | +0.31% |
| 2026-09-17 | 2.3294 | -0.25% |
| 2026-09-16 | 2.3351 | -0.29% |
| 2026-09-15 | 2.3419 | +0.17% |
| 2026-09-14 | 2.3379 | +0.75% |
| 2026-09-13 | 2.3205 | 0.00% |
| 2026-09-12 | 2.3205 | 0.00% |
| Date | 1 GBP in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 2.3205 | -0.01% |
| 2026-09-10 | 2.3209 | +0.17% |
| 2026-09-09 | 2.317 | -0.06% |
| 2026-09-08 | 2.3183 | +0.67% |
| 2026-09-07 | 2.3028 | +0.13% |
| 2026-09-06 | 2.2998 | 0.00% |
| 2026-09-05 | 2.2998 | 0.00% |
| 2026-09-04 | 2.2998 | +0.06% |
| 2026-09-03 | 2.2986 | -0.65% |
| 2026-09-02 | 2.3137 | +0.73% |
| 2026-09-01 | 2.2969 | +0.37% |
| 2026-08-31 | 2.2884 | +0.16% |
| 2026-08-30 | 2.2847 | 0.00% |
| 2026-08-29 | 2.2847 | 0.00% |
| 2026-08-28 | 2.2847 | — |
GBP to NZD conversion table
1 GBP2.3369 NZD
5 GBP11.6846 NZD
10 GBP23.3692 NZD
25 GBP58.4229 NZD
50 GBP116.8458 NZD
100 GBP233.6917 NZD
500 GBP1,168.4584 NZD
1,000 GBP2,336.9167 NZD
5,000 GBP11,684.584 NZD
10,000 GBP23,369.167 NZD
Get the GBP/NZD rate in your app
One GET request returns the latest GBP → 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/GBP/NZD"fetch('https://rate-api.com/api/v1/pair/GBP/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/NZD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "NZD"
},
"rate": 2.3369,
"timestamp": 1790429426,
"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 GBPNew Zealand Dollar → British Pound0.42791Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.