Convert ZAR to GBP
South African Rand → British Pound
1 ZAR = 0.046311 GBP(1 GBP = 21.59312 ZAR)
Currency converter
1 ZAR =
0.046311 GBP
ZAR to GBP: last 30 days
Over the last 30 days, 1 ZAR traded between 0.045576 and 0.046311 GBP, averaging 0.045999 GBP. The ZAR/GBP rate is up 0.65% since 2026-08-28.
- 30-day high
- 0.046311
- 2026-09-25
- 30-day low
- 0.045576
- 2026-09-15
- 30-day average
- 0.045999
- Days with data: 30
- 30-day change
- +0.65%
- since 2026-08-28
0.046311
0.0455762026-08-28 → 2026-09-26
| Date | 1 ZAR in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.046311 | 0.00% |
| 2026-09-25 | 0.046311 | +0.63% |
| 2026-09-24 | 0.046022 | -0.12% |
| 2026-09-23 | 0.046077 | +0.01% |
| 2026-09-22 | 0.046074 | +0.34% |
| 2026-09-21 | 0.045916 | -0.30% |
| 2026-09-20 | 0.046053 | 0.00% |
| 2026-09-19 | 0.046053 | 0.00% |
| 2026-09-18 | 0.046053 | +0.12% |
| 2026-09-17 | 0.045998 | +0.69% |
| 2026-09-16 | 0.045683 | +0.24% |
| 2026-09-15 | 0.045576 | -0.06% |
| 2026-09-14 | 0.045605 | -0.46% |
| 2026-09-13 | 0.045814 | 0.00% |
| 2026-09-12 | 0.045814 | 0.00% |
| Date | 1 ZAR in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.045814 | +0.02% |
| 2026-09-10 | 0.045807 | -0.33% |
| 2026-09-09 | 0.045961 | -0.24% |
| 2026-09-08 | 0.046072 | -0.31% |
| 2026-09-07 | 0.046215 | -0.16% |
| 2026-09-06 | 0.046289 | 0.00% |
| 2026-09-05 | 0.046289 | 0.00% |
| 2026-09-04 | 0.046289 | +0.20% |
| 2026-09-03 | 0.046199 | +0.25% |
| 2026-09-02 | 0.046082 | +0.74% |
| 2026-09-01 | 0.045745 | -0.19% |
| 2026-08-31 | 0.045829 | -0.39% |
| 2026-08-30 | 0.04601 | 0.00% |
| 2026-08-29 | 0.04601 | 0.00% |
| 2026-08-28 | 0.04601 | — |
ZAR to GBP conversion table
1 ZAR0.046311 GBP
5 ZAR0.23156 GBP
10 ZAR0.46311 GBP
25 ZAR1.1578 GBP
50 ZAR2.3156 GBP
100 ZAR4.6311 GBP
500 ZAR23.1555 GBP
1,000 ZAR46.311 GBP
5,000 ZAR231.5552 GBP
10,000 ZAR463.1105 GBP
Get the ZAR/GBP rate in your app
One GET request returns the latest ZAR → 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/ZAR/GBP"fetch('https://rate-api.com/api/v1/pair/ZAR/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZAR = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "GBP"
},
"rate": 0.0463,
"timestamp": 1790435121,
"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 ZARBritish Pound → South African Rand21.5931Convert ZAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.