Convert GBP to BZD
British Pound → Belize Dollar
1 GBP = 2.650474 BZD(1 BZD = 0.377291 GBP)
Currency converter
1 GBP =
2.6505 BZD
GBP to BZD: last 30 days
Over the last 30 days, 1 GBP traded between 2.6439 and 2.7392 BZD, averaging 2.7084 BZD. The GBP/BZD rate is down 2.98% since 2026-08-28.
- 30-day high
- 2.7392
- 2026-08-31
- 30-day low
- 2.6439
- 2026-09-24
- 30-day average
- 2.7084
- Days with data: 30
- 30-day change
- -2.98%
- since 2026-08-28
2.7392
2.64392026-08-28 → 2026-09-26
| Date | 1 GBP in BZD | Daily change |
|---|---|---|
| 2026-09-26 | 2.6505 | 0.00% |
| 2026-09-25 | 2.6505 | +0.25% |
| 2026-09-24 | 2.6439 | -0.43% |
| 2026-09-23 | 2.6553 | -1.32% |
| 2026-09-22 | 2.6907 | -0.21% |
| 2026-09-21 | 2.6963 | +0.20% |
| 2026-09-20 | 2.6908 | +0.10% |
| 2026-09-19 | 2.688 | +0.17% |
| 2026-09-18 | 2.6835 | -0.88% |
| 2026-09-17 | 2.7073 | -0.09% |
| 2026-09-16 | 2.7097 | -0.15% |
| 2026-09-15 | 2.7139 | -0.12% |
| 2026-09-14 | 2.7172 | -0.23% |
| 2026-09-13 | 2.7235 | +0.07% |
| 2026-09-12 | 2.7215 | -0.33% |
| Date | 1 GBP in BZD | Daily change |
|---|---|---|
| 2026-09-11 | 2.7304 | +0.33% |
| 2026-09-10 | 2.7215 | -0.25% |
| 2026-09-09 | 2.7284 | +0.08% |
| 2026-09-08 | 2.7262 | +0.06% |
| 2026-09-07 | 2.7246 | -0.17% |
| 2026-09-06 | 2.7292 | +0.13% |
| 2026-09-05 | 2.7258 | +0.18% |
| 2026-09-04 | 2.721 | +0.14% |
| 2026-09-03 | 2.7171 | +0.04% |
| 2026-09-02 | 2.716 | -0.22% |
| 2026-09-01 | 2.722 | -0.63% |
| 2026-08-31 | 2.7392 | +0.00% |
| 2026-08-30 | 2.7392 | +0.09% |
| 2026-08-29 | 2.7366 | +0.17% |
| 2026-08-28 | 2.7319 | — |
GBP to BZD conversion table
1 GBP2.6505 BZD
5 GBP13.2524 BZD
10 GBP26.5047 BZD
25 GBP66.2618 BZD
50 GBP132.5237 BZD
100 GBP265.0474 BZD
500 GBP1,325.2368 BZD
1,000 GBP2,650.4736 BZD
5,000 GBP13,252.368 BZD
10,000 GBP26,504.736 BZD
Get the GBP/BZD rate in your app
One GET request returns the latest GBP → BZD 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/BZD"fetch('https://rate-api.com/api/v1/pair/GBP/BZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} BZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/BZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} BZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/BZD');
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']} BZD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "BZD"
},
"rate": 2.6505,
"timestamp": 1790429429,
"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
BZD to GBPBelize Dollar → British Pound0.37729Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.