Convert EGP to USD
Egyptian Pound → US Dollar
1 EGP = 0.0193123 USD(1 USD = 51.780478 EGP)
Currency converter
1 EGP =
0.019312 USD
EGP to USD: last 30 days
Over the last 30 days, 1 EGP traded between 0.019153 and 0.019988 USD, averaging 0.019493 USD. The EGP/USD rate is down 2.98% since 2026-08-28.
- 30-day high
- 0.019988
- 2026-08-30
- 30-day low
- 0.019153
- 2026-09-19
- 30-day average
- 0.019493
- Days with data: 30
- 30-day change
- -2.98%
- since 2026-08-28
0.019988
0.0191532026-08-28 → 2026-09-26
| Date | 1 EGP in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.019312 | 0.00% |
| 2026-09-25 | 0.019312 | -0.70% |
| 2026-09-24 | 0.019449 | +0.41% |
| 2026-09-23 | 0.019369 | +0.55% |
| 2026-09-22 | 0.019263 | +0.25% |
| 2026-09-21 | 0.019214 | +0.17% |
| 2026-09-20 | 0.019181 | +0.15% |
| 2026-09-19 | 0.019153 | -0.17% |
| 2026-09-18 | 0.019185 | +0.14% |
| 2026-09-17 | 0.019158 | -0.57% |
| 2026-09-16 | 0.019267 | -0.38% |
| 2026-09-15 | 0.01934 | -0.65% |
| 2026-09-14 | 0.019467 | -0.01% |
| 2026-09-13 | 0.01947 | +0.03% |
| 2026-09-12 | 0.019465 | -0.03% |
| Date | 1 EGP in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.01947 | -0.33% |
| 2026-09-10 | 0.019534 | -0.33% |
| 2026-09-09 | 0.019599 | -0.19% |
| 2026-09-08 | 0.019637 | +0.05% |
| 2026-09-07 | 0.019628 | -0.03% |
| 2026-09-06 | 0.019634 | -0.02% |
| 2026-09-05 | 0.019638 | +0.07% |
| 2026-09-04 | 0.019625 | +0.20% |
| 2026-09-03 | 0.019586 | -0.29% |
| 2026-09-02 | 0.019642 | +0.02% |
| 2026-09-01 | 0.019638 | -0.36% |
| 2026-08-31 | 0.019709 | -1.39% |
| 2026-08-30 | 0.019988 | +0.13% |
| 2026-08-29 | 0.019961 | +0.28% |
| 2026-08-28 | 0.019905 | — |
EGP to USD conversion table
1 EGP0.019312 USD
5 EGP0.096561 USD
10 EGP0.19312 USD
25 EGP0.48281 USD
50 EGP0.96561 USD
100 EGP1.9312 USD
500 EGP9.6561 USD
1,000 EGP19.3123 USD
5,000 EGP96.5615 USD
10,000 EGP193.123 USD
Get the EGP/USD rate in your app
One GET request returns the latest EGP → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/EGP/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "USD"
},
"rate": 0.0193,
"timestamp": 1790435207,
"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
USD to EGPUS Dollar → Egyptian Pound51.7805Convert EGP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.