Convert EUR to EGP
Euro → Egyptian Pound
1 EUR = 59.045279 EGP(1 EGP = 0.0169362 EUR)
Currency converter
1 EUR =
59.0453 EGP
EUR to EGP: last 30 days
Over the last 30 days, 1 EUR traded between 58.251 and 59.9298 EGP, averaging 59.2517 EGP. The EUR/EGP rate is up 0.94% since 2026-08-28.
- 30-day high
- 59.9298
- 2026-09-17
- 30-day low
- 58.251
- 2026-08-30
- 30-day average
- 59.2517
- Days with data: 30
- 30-day change
- +0.94%
- since 2026-08-28
59.9298
58.2512026-08-28 → 2026-09-26
| Date | 1 EUR in EGP | Daily change |
|---|---|---|
| 2026-09-26 | 59.0453 | 0.00% |
| 2026-09-25 | 59.0453 | +1.03% |
| 2026-09-24 | 58.4458 | -0.79% |
| 2026-09-23 | 58.913 | -1.00% |
| 2026-09-22 | 59.5094 | -0.49% |
| 2026-09-21 | 59.7997 | +0.09% |
| 2026-09-20 | 59.7456 | -0.15% |
| 2026-09-19 | 59.8354 | +0.17% |
| 2026-09-18 | 59.7355 | -0.32% |
| 2026-09-17 | 59.9298 | +0.09% |
| 2026-09-16 | 59.8781 | +0.36% |
| 2026-09-15 | 59.6629 | +0.55% |
| 2026-09-14 | 59.3352 | -0.34% |
| 2026-09-13 | 59.5376 | -0.03% |
| 2026-09-12 | 59.5544 | +0.03% |
| Date | 1 EUR in EGP | Daily change |
|---|---|---|
| 2026-09-11 | 59.5372 | +0.12% |
| 2026-09-10 | 59.4662 | +0.02% |
| 2026-09-09 | 59.452 | +0.52% |
| 2026-09-08 | 59.1425 | -0.12% |
| 2026-09-07 | 59.2111 | +0.03% |
| 2026-09-06 | 59.192 | +0.02% |
| 2026-09-05 | 59.1813 | -0.07% |
| 2026-09-04 | 59.2204 | -0.14% |
| 2026-09-03 | 59.3036 | +0.61% |
| 2026-09-02 | 58.9463 | -0.12% |
| 2026-09-01 | 59.0169 | +0.31% |
| 2026-08-31 | 58.8348 | +1.00% |
| 2026-08-30 | 58.251 | -0.13% |
| 2026-08-29 | 58.3279 | -0.28% |
| 2026-08-28 | 58.4939 | — |
EUR to EGP conversion table
1 EUR59.0453 EGP
5 EUR295.2264 EGP
10 EUR590.4528 EGP
25 EUR1,476.132 EGP
50 EUR2,952.2639 EGP
100 EUR5,904.5279 EGP
500 EUR29,522.639 EGP
1,000 EUR59,045.279 EGP
5,000 EUR295,226.39 EGP
10,000 EUR590,452.79 EGP
Get the EUR/EGP rate in your app
One GET request returns the latest EUR → EGP 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/EGP"fetch('https://rate-api.com/api/v1/pair/EUR/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/EGP');
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']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "EGP"
},
"rate": 59.0453,
"timestamp": 1790429426,
"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
EGP to EUREgyptian Pound → Euro0.016936Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.