Convert GBP to GHS
British Pound → Ghanaian Cedi
1 GBP = 15.366551 GHS(1 GHS = 0.0650764 GBP)
Currency converter
1 GBP =
15.3666 GHS
GBP to GHS: last 30 days
Over the last 30 days, 1 GBP traded between 15.1983 and 15.4791 GHS, averaging 15.3656 GHS. The GBP/GHS rate is up 0.83% since 2026-08-28.
- 30-day high
- 15.4791
- 2026-09-11
- 30-day low
- 15.1983
- 2026-09-02
- 30-day average
- 15.3656
- Days with data: 30
- 30-day change
- +0.83%
- since 2026-08-28
15.4791
15.19832026-08-28 → 2026-09-26
| Date | 1 GBP in GHS | Daily change |
|---|---|---|
| 2026-09-26 | 15.3666 | 0.00% |
| 2026-09-25 | 15.3666 | +0.34% |
| 2026-09-24 | 15.3142 | -0.14% |
| 2026-09-23 | 15.3356 | -0.34% |
| 2026-09-22 | 15.388 | -0.23% |
| 2026-09-21 | 15.4239 | +0.38% |
| 2026-09-20 | 15.3657 | -0.02% |
| 2026-09-19 | 15.3682 | +0.07% |
| 2026-09-18 | 15.3575 | -0.14% |
| 2026-09-17 | 15.3796 | -0.36% |
| 2026-09-16 | 15.4355 | -0.13% |
| 2026-09-15 | 15.4554 | +0.01% |
| 2026-09-14 | 15.4537 | +0.01% |
| 2026-09-13 | 15.452 | -0.17% |
| 2026-09-12 | 15.4788 | -0.00% |
| Date | 1 GBP in GHS | Daily change |
|---|---|---|
| 2026-09-11 | 15.4791 | +0.15% |
| 2026-09-10 | 15.4558 | -0.14% |
| 2026-09-09 | 15.477 | +0.23% |
| 2026-09-08 | 15.442 | +0.28% |
| 2026-09-07 | 15.3996 | +0.06% |
| 2026-09-06 | 15.391 | -0.08% |
| 2026-09-05 | 15.4034 | +0.21% |
| 2026-09-04 | 15.3706 | +0.84% |
| 2026-09-03 | 15.2422 | +0.29% |
| 2026-09-02 | 15.1983 | -0.21% |
| 2026-09-01 | 15.231 | +0.08% |
| 2026-08-31 | 15.2183 | -0.13% |
| 2026-08-30 | 15.2383 | -0.02% |
| 2026-08-29 | 15.241 | +0.00% |
| 2026-08-28 | 15.2405 | — |
GBP to GHS conversion table
1 GBP15.3666 GHS
5 GBP76.8328 GHS
10 GBP153.6655 GHS
25 GBP384.1638 GHS
50 GBP768.3275 GHS
100 GBP1,536.6551 GHS
500 GBP7,683.2754 GHS
1,000 GBP15,366.551 GHS
5,000 GBP76,832.754 GHS
10,000 GBP153,665.51 GHS
Get the GBP/GHS rate in your app
One GET request returns the latest GBP → GHS 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/GHS"fetch('https://rate-api.com/api/v1/pair/GBP/GHS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} GHS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/GHS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} GHS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/GHS');
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']} GHS\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "GHS"
},
"rate": 15.3666,
"timestamp": 1790437780,
"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
GHS to GBPGhanaian Cedi → British Pound0.065076Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.