Convert GBP to ZAR
British Pound → South African Rand
1 GBP = 21.59312 ZAR(1 ZAR = 0.046311 GBP)
Currency converter
1 GBP =
21.5931 ZAR
GBP to ZAR: last 30 days
Over the last 30 days, 1 GBP traded between 21.5931 and 21.9416 ZAR, averaging 21.7399 ZAR. The GBP/ZAR rate is down 0.65% since 2026-08-28.
- 30-day high
- 21.9416
- 2026-09-15
- 30-day low
- 21.5931
- 2026-09-25
- 30-day average
- 21.7399
- Days with data: 30
- 30-day change
- -0.65%
- since 2026-08-28
21.9416
21.59312026-08-28 → 2026-09-26
| Date | 1 GBP in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 21.5931 | 0.00% |
| 2026-09-25 | 21.5931 | -0.62% |
| 2026-09-24 | 21.7287 | +0.12% |
| 2026-09-23 | 21.703 | -0.01% |
| 2026-09-22 | 21.7044 | -0.34% |
| 2026-09-21 | 21.779 | +0.30% |
| 2026-09-20 | 21.7142 | 0.00% |
| 2026-09-19 | 21.7142 | 0.00% |
| 2026-09-18 | 21.7142 | -0.12% |
| 2026-09-17 | 21.7401 | -0.68% |
| 2026-09-16 | 21.89 | -0.24% |
| 2026-09-15 | 21.9416 | +0.06% |
| 2026-09-14 | 21.9276 | +0.46% |
| 2026-09-13 | 21.8272 | 0.00% |
| 2026-09-12 | 21.8272 | 0.00% |
| Date | 1 GBP in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 21.8272 | -0.02% |
| 2026-09-10 | 21.8306 | +0.34% |
| 2026-09-09 | 21.7577 | +0.24% |
| 2026-09-08 | 21.7054 | +0.31% |
| 2026-09-07 | 21.6379 | +0.16% |
| 2026-09-06 | 21.6036 | 0.00% |
| 2026-09-05 | 21.6036 | 0.00% |
| 2026-09-04 | 21.6036 | -0.19% |
| 2026-09-03 | 21.6457 | -0.25% |
| 2026-09-02 | 21.7002 | -0.73% |
| 2026-09-01 | 21.8605 | +0.19% |
| 2026-08-31 | 21.8201 | +0.39% |
| 2026-08-30 | 21.7345 | 0.00% |
| 2026-08-29 | 21.7345 | 0.00% |
| 2026-08-28 | 21.7345 | — |
GBP to ZAR conversion table
1 GBP21.5931 ZAR
5 GBP107.9656 ZAR
10 GBP215.9312 ZAR
25 GBP539.828 ZAR
50 GBP1,079.656 ZAR
100 GBP2,159.312 ZAR
500 GBP10,796.56 ZAR
1,000 GBP21,593.12 ZAR
5,000 GBP107,965.6 ZAR
10,000 GBP215,931.2 ZAR
Get the GBP/ZAR rate in your app
One GET request returns the latest GBP → ZAR 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/ZAR"fetch('https://rate-api.com/api/v1/pair/GBP/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/ZAR');
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']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "ZAR"
},
"rate": 21.5931,
"timestamp": 1790437584,
"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
ZAR to GBPSouth African Rand → British Pound0.046311Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.