Convert EGP to GBP
Egyptian Pound → British Pound
1 EGP = 0.0145727 GBP(1 GBP = 68.621394 EGP)
Currency converter
1 EGP =
0.014573 GBP
EGP to GBP: last 30 days
Over the last 30 days, 1 EGP traded between 0.014319 and 0.014716 GBP, averaging 0.014487 GBP. The EGP/GBP rate is down 0.56% since 2026-08-28.
- 30-day high
- 0.014716
- 2026-08-30
- 30-day low
- 0.014319
- 2026-09-16
- 30-day average
- 0.014487
- Days with data: 30
- 30-day change
- -0.56%
- since 2026-08-28
0.014716
0.0143192026-08-28 → 2026-09-26
| Date | 1 EGP in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.014573 | 0.00% |
| 2026-09-25 | 0.014573 | -0.95% |
| 2026-09-24 | 0.014712 | +0.84% |
| 2026-09-23 | 0.014589 | +1.21% |
| 2026-09-22 | 0.014415 | +0.49% |
| 2026-09-21 | 0.014345 | -0.21% |
| 2026-09-20 | 0.014374 | +0.15% |
| 2026-09-19 | 0.014353 | -0.17% |
| 2026-09-18 | 0.014377 | +0.38% |
| 2026-09-17 | 0.014322 | +0.02% |
| 2026-09-16 | 0.014319 | -0.17% |
| 2026-09-15 | 0.014344 | -0.57% |
| 2026-09-14 | 0.014426 | +0.09% |
| 2026-09-13 | 0.014414 | +0.03% |
| 2026-09-12 | 0.01441 | -0.03% |
| Date | 1 EGP in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.014414 | -0.24% |
| 2026-09-10 | 0.014448 | -0.00% |
| 2026-09-09 | 0.014448 | -0.34% |
| 2026-09-08 | 0.014497 | -0.06% |
| 2026-09-07 | 0.014506 | -0.04% |
| 2026-09-06 | 0.014512 | -0.02% |
| 2026-09-05 | 0.014514 | +0.07% |
| 2026-09-04 | 0.014505 | -0.04% |
| 2026-09-03 | 0.014511 | -0.39% |
| 2026-09-02 | 0.014568 | +0.37% |
| 2026-09-01 | 0.014514 | -0.30% |
| 2026-08-31 | 0.014557 | -1.08% |
| 2026-08-30 | 0.014716 | +0.13% |
| 2026-08-29 | 0.014696 | +0.28% |
| 2026-08-28 | 0.014655 | — |
EGP to GBP conversion table
1 EGP0.014573 GBP
5 EGP0.072864 GBP
10 EGP0.14573 GBP
25 EGP0.36432 GBP
50 EGP0.72864 GBP
100 EGP1.4573 GBP
500 EGP7.2864 GBP
1,000 EGP14.5727 GBP
5,000 EGP72.8636 GBP
10,000 EGP145.7272 GBP
Get the EGP/GBP rate in your app
One GET request returns the latest EGP → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/EGP/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "GBP"
},
"rate": 0.0146,
"timestamp": 1790435277,
"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
GBP to EGPBritish Pound → Egyptian Pound68.6214Convert EGP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.