Convert GHS to EUR
Ghanaian Cedi → Euro
1 GHS = 0.0756307 EUR(1 EUR = 13.222149 GHS)
Currency converter
1 GHS =
0.075631 EUR
GHS to EUR: last 30 days
Over the last 30 days, 1 GHS traded between 0.075219 and 0.076722 EUR, averaging 0.075826 EUR. The GHS/EUR rate is down 1.20% since 2026-08-28.
- 30-day high
- 0.076722
- 2026-08-31
- 30-day low
- 0.075219
- 2026-09-09
- 30-day average
- 0.075826
- Days with data: 30
- 30-day change
- -1.20%
- since 2026-08-28
0.076722
0.0752192026-08-28 → 2026-09-26
| Date | 1 GHS in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.075631 | 0.00% |
| 2026-09-25 | 0.075631 | -0.41% |
| 2026-09-24 | 0.075941 | +0.10% |
| 2026-09-23 | 0.075867 | +0.14% |
| 2026-09-22 | 0.075758 | +0.23% |
| 2026-09-21 | 0.075582 | -0.26% |
| 2026-09-20 | 0.07578 | +0.02% |
| 2026-09-19 | 0.075768 | -0.07% |
| 2026-09-18 | 0.075821 | +0.09% |
| 2026-09-17 | 0.075756 | +0.26% |
| 2026-09-16 | 0.075561 | -0.06% |
| 2026-09-15 | 0.075605 | +0.01% |
| 2026-09-14 | 0.075598 | +0.24% |
| 2026-09-13 | 0.075413 | +0.17% |
| 2026-09-12 | 0.075283 | +0.00% |
| Date | 1 GHS in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.075281 | -0.03% |
| 2026-09-10 | 0.075307 | +0.12% |
| 2026-09-09 | 0.075219 | -0.41% |
| 2026-09-08 | 0.075528 | -0.10% |
| 2026-09-07 | 0.075602 | -0.05% |
| 2026-09-06 | 0.07564 | +0.08% |
| 2026-09-05 | 0.075579 | -0.21% |
| 2026-09-04 | 0.07574 | -0.65% |
| 2026-09-03 | 0.076239 | -0.50% |
| 2026-09-02 | 0.076623 | -0.04% |
| 2026-09-01 | 0.076651 | -0.09% |
| 2026-08-31 | 0.076722 | +0.22% |
| 2026-08-30 | 0.076557 | +0.02% |
| 2026-08-29 | 0.076543 | -0.00% |
| 2026-08-28 | 0.076546 | — |
GHS to EUR conversion table
1 GHS0.075631 EUR
5 GHS0.37815 EUR
10 GHS0.75631 EUR
25 GHS1.8908 EUR
50 GHS3.7815 EUR
100 GHS7.5631 EUR
500 GHS37.8153 EUR
1,000 GHS75.6307 EUR
5,000 GHS378.1534 EUR
10,000 GHS756.3067 EUR
Get the GHS/EUR rate in your app
One GET request returns the latest GHS → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/GHS/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GHS = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GHS/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GHS = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GHS/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "GHS",
"to": "EUR"
},
"rate": 0.0756,
"timestamp": 1790435145,
"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
EUR to GHSEuro → Ghanaian Cedi13.2221Convert GHS to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.