Convert GBP to KES
British Pound → Kenyan Shilling
1 GBP = 171.66724 KES(1 KES = 0.00582522 GBP)
Currency converter
1 GBP =
171.6672 KES
GBP to KES: last 30 days
Over the last 30 days, 1 GBP traded between 171.2015 and 175.8106 KES, averaging 174.2365 KES. The GBP/KES rate is down 2.35% since 2026-08-28.
- 30-day high
- 175.8106
- 2026-08-30
- 30-day low
- 171.2015
- 2026-09-24
- 30-day average
- 174.2365
- Days with data: 30
- 30-day change
- -2.35%
- since 2026-08-28
175.8106
171.20152026-08-28 → 2026-09-26
| Date | 1 GBP in KES | Daily change |
|---|---|---|
| 2026-09-26 | 171.6672 | 0.00% |
| 2026-09-25 | 171.6672 | +0.27% |
| 2026-09-24 | 171.2015 | -0.39% |
| 2026-09-23 | 171.8748 | -0.70% |
| 2026-09-22 | 173.0844 | -0.20% |
| 2026-09-21 | 173.4335 | +0.35% |
| 2026-09-20 | 172.8311 | +0.02% |
| 2026-09-19 | 172.797 | -0.17% |
| 2026-09-18 | 173.0874 | -0.13% |
| 2026-09-17 | 173.3177 | -0.65% |
| 2026-09-16 | 174.4496 | -0.06% |
| 2026-09-15 | 174.556 | -0.07% |
| 2026-09-14 | 174.6785 | -0.08% |
| 2026-09-13 | 174.8258 | -0.01% |
| 2026-09-12 | 174.8487 | +0.02% |
| Date | 1 GBP in KES | Daily change |
|---|---|---|
| 2026-09-11 | 174.8169 | -0.10% |
| 2026-09-10 | 174.993 | -0.33% |
| 2026-09-09 | 175.5661 | +0.14% |
| 2026-09-08 | 175.32 | +0.11% |
| 2026-09-07 | 175.1262 | +0.01% |
| 2026-09-06 | 175.1045 | -0.01% |
| 2026-09-05 | 175.1283 | +0.00% |
| 2026-09-04 | 175.1267 | +0.25% |
| 2026-09-03 | 174.6909 | +0.10% |
| 2026-09-02 | 174.525 | -0.41% |
| 2026-09-01 | 175.2474 | -0.26% |
| 2026-08-31 | 175.7062 | -0.06% |
| 2026-08-30 | 175.8106 | +0.00% |
| 2026-08-29 | 175.8077 | +0.00% |
| 2026-08-28 | 175.8044 | — |
GBP to KES conversion table
1 GBP171.6672 KES
5 GBP858.3362 KES
10 GBP1,716.6724 KES
25 GBP4,291.681 KES
50 GBP8,583.3621 KES
100 GBP17,166.724 KES
500 GBP85,833.621 KES
1,000 GBP171,667.24 KES
5,000 GBP858,336.21 KES
10,000 GBP1,716,672.4 KES
Get the GBP/KES rate in your app
One GET request returns the latest GBP → KES 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/KES"fetch('https://rate-api.com/api/v1/pair/GBP/KES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} KES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/KES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} KES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/KES');
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']} KES\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "KES"
},
"rate": 171.6672,
"timestamp": 1790429448,
"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
KES to GBPKenyan Shilling → British Pound0.0058252Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.