Convert EGP to EUR
Egyptian Pound → Euro
1 EGP = 0.0169362 EUR(1 EUR = 59.045279 EGP)
Currency converter
1 EGP =
0.016936 EUR
EGP to EUR: last 30 days
Over the last 30 days, 1 EGP traded between 0.016686 and 0.017167 EUR, averaging 0.016878 EUR. The EGP/EUR rate is down 0.93% since 2026-08-28.
- 30-day high
- 0.017167
- 2026-08-30
- 30-day low
- 0.016686
- 2026-09-17
- 30-day average
- 0.016878
- Days with data: 30
- 30-day change
- -0.93%
- since 2026-08-28
0.017167
0.0166862026-08-28 → 2026-09-26
| Date | 1 EGP in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.016936 | 0.00% |
| 2026-09-25 | 0.016936 | -1.02% |
| 2026-09-24 | 0.01711 | +0.80% |
| 2026-09-23 | 0.016974 | +1.01% |
| 2026-09-22 | 0.016804 | +0.49% |
| 2026-09-21 | 0.016722 | -0.09% |
| 2026-09-20 | 0.016738 | +0.15% |
| 2026-09-19 | 0.016713 | -0.17% |
| 2026-09-18 | 0.01674 | +0.33% |
| 2026-09-17 | 0.016686 | -0.09% |
| 2026-09-16 | 0.016701 | -0.36% |
| 2026-09-15 | 0.016761 | -0.55% |
| 2026-09-14 | 0.016853 | +0.34% |
| 2026-09-13 | 0.016796 | +0.03% |
| 2026-09-12 | 0.016791 | -0.03% |
| Date | 1 EGP in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.016796 | -0.12% |
| 2026-09-10 | 0.016816 | -0.02% |
| 2026-09-09 | 0.01682 | -0.52% |
| 2026-09-08 | 0.016908 | +0.12% |
| 2026-09-07 | 0.016889 | -0.03% |
| 2026-09-06 | 0.016894 | -0.02% |
| 2026-09-05 | 0.016897 | +0.07% |
| 2026-09-04 | 0.016886 | +0.14% |
| 2026-09-03 | 0.016862 | -0.60% |
| 2026-09-02 | 0.016965 | +0.12% |
| 2026-09-01 | 0.016944 | -0.31% |
| 2026-08-31 | 0.016997 | -0.99% |
| 2026-08-30 | 0.017167 | +0.13% |
| 2026-08-29 | 0.017144 | +0.28% |
| 2026-08-28 | 0.017096 | — |
EGP to EUR conversion table
1 EGP0.016936 EUR
5 EGP0.084681 EUR
10 EGP0.16936 EUR
25 EGP0.4234 EUR
50 EGP0.84681 EUR
100 EGP1.6936 EUR
500 EGP8.4681 EUR
1,000 EGP16.9362 EUR
5,000 EGP84.6808 EUR
10,000 EGP169.3616 EUR
Get the EGP/EUR rate in your app
One GET request returns the latest EGP → 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/EGP/EUR"fetch('https://rate-api.com/api/v1/pair/EGP/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EGP = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "EUR"
},
"rate": 0.0169,
"timestamp": 1790435220,
"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 EGPEuro → Egyptian Pound59.0453Convert EGP to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.