Convert EUR to GHS
Euro → Ghanaian Cedi
1 EUR = 13.222149 GHS(1 GHS = 0.0756307 EUR)
Currency converter
1 EUR =
13.2221 GHS
EUR to GHS: last 30 days
Over the last 30 days, 1 EUR traded between 13.0341 and 13.2946 GHS, averaging 13.1886 GHS. The EUR/GHS rate is up 1.21% since 2026-08-28.
- 30-day high
- 13.2946
- 2026-09-09
- 30-day low
- 13.0341
- 2026-08-31
- 30-day average
- 13.1886
- Days with data: 30
- 30-day change
- +1.21%
- since 2026-08-28
13.2946
13.03412026-08-28 → 2026-09-26
| Date | 1 EUR in GHS | Daily change |
|---|---|---|
| 2026-09-26 | 13.2221 | 0.00% |
| 2026-09-25 | 13.2221 | +0.41% |
| 2026-09-24 | 13.1681 | -0.10% |
| 2026-09-23 | 13.1809 | -0.14% |
| 2026-09-22 | 13.1998 | -0.23% |
| 2026-09-21 | 13.2306 | +0.26% |
| 2026-09-20 | 13.1961 | -0.02% |
| 2026-09-19 | 13.1982 | +0.07% |
| 2026-09-18 | 13.189 | -0.09% |
| 2026-09-17 | 13.2003 | -0.26% |
| 2026-09-16 | 13.2343 | +0.06% |
| 2026-09-15 | 13.2267 | -0.01% |
| 2026-09-14 | 13.2279 | -0.24% |
| 2026-09-13 | 13.2603 | -0.17% |
| 2026-09-12 | 13.2832 | -0.00% |
| Date | 1 EUR in GHS | Daily change |
|---|---|---|
| 2026-09-11 | 13.2835 | +0.03% |
| 2026-09-10 | 13.2789 | -0.12% |
| 2026-09-09 | 13.2946 | +0.41% |
| 2026-09-08 | 13.2401 | +0.10% |
| 2026-09-07 | 13.2272 | +0.05% |
| 2026-09-06 | 13.2206 | -0.08% |
| 2026-09-05 | 13.2312 | +0.21% |
| 2026-09-04 | 13.203 | +0.66% |
| 2026-09-03 | 13.1167 | +0.50% |
| 2026-09-02 | 13.0508 | +0.04% |
| 2026-09-01 | 13.0461 | +0.09% |
| 2026-08-31 | 13.0341 | -0.22% |
| 2026-08-30 | 13.0622 | -0.02% |
| 2026-08-29 | 13.0645 | +0.00% |
| 2026-08-28 | 13.0641 | — |
EUR to GHS conversion table
1 EUR13.2221 GHS
5 EUR66.1107 GHS
10 EUR132.2215 GHS
25 EUR330.5537 GHS
50 EUR661.1074 GHS
100 EUR1,322.2149 GHS
500 EUR6,611.0743 GHS
1,000 EUR13,222.149 GHS
5,000 EUR66,110.743 GHS
10,000 EUR132,221.49 GHS
Get the EUR/GHS rate in your app
One GET request returns the latest EUR → 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/EUR/GHS"fetch('https://rate-api.com/api/v1/pair/EUR/GHS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} GHS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/GHS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} GHS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/GHS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} GHS\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "GHS"
},
"rate": 13.2221,
"timestamp": 1790437766,
"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 EURGhanaian Cedi → Euro0.075631Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.