Convert GHS to GBP
Ghanaian Cedi → British Pound
1 GHS = 0.0650764 GBP(1 GBP = 15.366551 GHS)
Currency converter
1 GHS =
0.065076 GBP
GHS to GBP: last 30 days
Over the last 30 days, 1 GHS traded between 0.064603 and 0.065797 GBP, averaging 0.065082 GBP. The GHS/GBP rate is down 0.82% since 2026-08-28.
- 30-day high
- 0.065797
- 2026-09-02
- 30-day low
- 0.064603
- 2026-09-11
- 30-day average
- 0.065082
- Days with data: 30
- 30-day change
- -0.82%
- since 2026-08-28
0.065797
0.0646032026-08-28 → 2026-09-26
| Date | 1 GHS in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.065076 | 0.00% |
| 2026-09-25 | 0.065076 | -0.34% |
| 2026-09-24 | 0.065299 | +0.14% |
| 2026-09-23 | 0.065208 | +0.34% |
| 2026-09-22 | 0.064986 | +0.23% |
| 2026-09-21 | 0.064834 | -0.38% |
| 2026-09-20 | 0.06508 | +0.02% |
| 2026-09-19 | 0.06507 | -0.07% |
| 2026-09-18 | 0.065115 | +0.14% |
| 2026-09-17 | 0.065021 | +0.36% |
| 2026-09-16 | 0.064786 | +0.13% |
| 2026-09-15 | 0.064702 | -0.01% |
| 2026-09-14 | 0.06471 | -0.01% |
| 2026-09-13 | 0.064716 | +0.17% |
| 2026-09-12 | 0.064605 | +0.00% |
| Date | 1 GHS in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.064603 | -0.15% |
| 2026-09-10 | 0.064701 | +0.14% |
| 2026-09-09 | 0.064612 | -0.23% |
| 2026-09-08 | 0.064758 | -0.27% |
| 2026-09-07 | 0.064937 | -0.06% |
| 2026-09-06 | 0.064973 | +0.08% |
| 2026-09-05 | 0.064921 | -0.21% |
| 2026-09-04 | 0.065059 | -0.83% |
| 2026-09-03 | 0.065607 | -0.29% |
| 2026-09-02 | 0.065797 | +0.21% |
| 2026-09-01 | 0.065656 | -0.08% |
| 2026-08-31 | 0.06571 | +0.13% |
| 2026-08-30 | 0.065624 | +0.02% |
| 2026-08-29 | 0.065613 | -0.00% |
| 2026-08-28 | 0.065615 | — |
GHS to GBP conversion table
1 GHS0.065076 GBP
5 GHS0.32538 GBP
10 GHS0.65076 GBP
25 GHS1.6269 GBP
50 GHS3.2538 GBP
100 GHS6.5076 GBP
500 GHS32.5382 GBP
1,000 GHS65.0764 GBP
5,000 GHS325.3821 GBP
10,000 GHS650.7641 GBP
Get the GHS/GBP rate in your app
One GET request returns the latest GHS → 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/GHS/GBP"fetch('https://rate-api.com/api/v1/pair/GHS/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GHS = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GHS/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GHS = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GHS/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GHS = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "GHS",
"to": "GBP"
},
"rate": 0.0651,
"timestamp": 1790435167,
"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 GHSBritish Pound → Ghanaian Cedi15.3666Convert GHS to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.