Convert GBP to ZMW
British Pound → Zambian Kwacha
1 GBP = 25.842733 ZMW(1 ZMW = 0.0386956 GBP)
Currency converter
1 GBP =
25.8427 ZMW
GBP to ZMW: last 30 days
Over the last 30 days, 1 GBP traded between 25.7909 and 26.3882 ZMW, averaging 26.0542 ZMW. The GBP/ZMW rate is down 0.22% since 2026-08-29.
- 30-day high
- 26.3882
- 2026-09-21
- 30-day low
- 25.7909
- 2026-08-31
- 30-day average
- 26.0542
- Days with data: 30
- 30-day change
- -0.22%
- since 2026-08-29
26.3882
25.79092026-08-29 → 2026-09-27
| Date | 1 GBP in ZMW | Daily change |
|---|---|---|
| 2026-09-27 | 25.8427 | 0.00% |
| 2026-09-26 | 25.8427 | -0.25% |
| 2026-09-25 | 25.9085 | +0.15% |
| 2026-09-24 | 25.8704 | -0.07% |
| 2026-09-23 | 25.8893 | -1.41% |
| 2026-09-22 | 26.259 | -0.49% |
| 2026-09-21 | 26.3882 | +0.73% |
| 2026-09-20 | 26.1977 | -0.32% |
| 2026-09-19 | 26.2828 | +0.37% |
| 2026-09-18 | 26.1851 | -0.28% |
| 2026-09-17 | 26.2589 | -0.44% |
| 2026-09-16 | 26.3736 | +0.83% |
| 2026-09-15 | 26.1566 | +0.17% |
| 2026-09-14 | 26.1118 | -0.10% |
| 2026-09-13 | 26.1369 | -0.00% |
| Date | 1 GBP in ZMW | Daily change |
|---|---|---|
| 2026-09-12 | 26.1379 | +0.00% |
| 2026-09-11 | 26.1379 | +0.16% |
| 2026-09-10 | 26.0952 | -0.43% |
| 2026-09-09 | 26.2079 | +0.51% |
| 2026-09-08 | 26.0747 | +0.11% |
| 2026-09-07 | 26.046 | +0.01% |
| 2026-09-06 | 26.0435 | -0.00% |
| 2026-09-05 | 26.0446 | +0.25% |
| 2026-09-04 | 25.9785 | +0.51% |
| 2026-09-03 | 25.8467 | +0.05% |
| 2026-09-02 | 25.8341 | -0.35% |
| 2026-09-01 | 25.9259 | +0.52% |
| 2026-08-31 | 25.7909 | -0.26% |
| 2026-08-30 | 25.8583 | -0.16% |
| 2026-08-29 | 25.9008 | — |
GBP to ZMW conversion table
1 GBP25.8427 ZMW
5 GBP129.2137 ZMW
10 GBP258.4273 ZMW
25 GBP646.0683 ZMW
50 GBP1,292.1367 ZMW
100 GBP2,584.2733 ZMW
500 GBP12,921.367 ZMW
1,000 GBP25,842.733 ZMW
5,000 GBP129,213.67 ZMW
10,000 GBP258,427.33 ZMW
Get the GBP/ZMW rate in your app
One GET request returns the latest GBP → ZMW 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/ZMW"fetch('https://rate-api.com/api/v1/pair/GBP/ZMW', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} ZMW`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/ZMW",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} ZMW")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/ZMW');
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']} ZMW\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "ZMW"
},
"rate": 25.8427,
"timestamp": 1790470906,
"date": "2026-09-27"
}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
ZMW to GBPZambian Kwacha → British Pound0.038696Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.