Convert GBP to EGP
British Pound → Egyptian Pound
1 GBP = 68.663576 EGP(1 EGP = 0.0145638 GBP)
Currency converter
1 GBP =
68.6636 EGP
GBP to EGP: last 30 days
Over the last 30 days, 1 GBP traded between 67.955 and 69.8376 EGP, averaging 69.0481 EGP. The GBP/EGP rate is up 0.91% since 2026-08-29.
- 30-day high
- 69.8376
- 2026-09-16
- 30-day low
- 67.955
- 2026-08-30
- 30-day average
- 69.0481
- Days with data: 30
- 30-day change
- +0.91%
- since 2026-08-29
69.8376
67.9552026-08-29 → 2026-09-27
| Date | 1 GBP in EGP | Daily change |
|---|---|---|
| 2026-09-27 | 68.6636 | 0.00% |
| 2026-09-26 | 68.6636 | +0.06% |
| 2026-09-25 | 68.6214 | +0.96% |
| 2026-09-24 | 67.9713 | -0.83% |
| 2026-09-23 | 68.5434 | -1.20% |
| 2026-09-22 | 69.3744 | -0.49% |
| 2026-09-21 | 69.7129 | +0.21% |
| 2026-09-20 | 69.5686 | -0.15% |
| 2026-09-19 | 69.6732 | +0.17% |
| 2026-09-18 | 69.5568 | -0.38% |
| 2026-09-17 | 69.8237 | -0.02% |
| 2026-09-16 | 69.8376 | +0.17% |
| 2026-09-15 | 69.7161 | +0.57% |
| 2026-09-14 | 69.3192 | -0.09% |
| 2026-09-13 | 69.3782 | -0.03% |
| Date | 1 GBP in EGP | Daily change |
|---|---|---|
| 2026-09-12 | 69.3979 | +0.03% |
| 2026-09-11 | 69.3777 | +0.24% |
| 2026-09-10 | 69.2147 | +0.00% |
| 2026-09-09 | 69.2117 | +0.34% |
| 2026-09-08 | 68.9786 | +0.06% |
| 2026-09-07 | 68.9356 | +0.04% |
| 2026-09-06 | 68.9097 | +0.02% |
| 2026-09-05 | 68.8972 | -0.07% |
| 2026-09-04 | 68.9428 | +0.04% |
| 2026-09-03 | 68.9136 | +0.39% |
| 2026-09-02 | 68.6458 | -0.37% |
| 2026-09-01 | 68.9007 | +0.30% |
| 2026-08-31 | 68.6939 | +1.09% |
| 2026-08-30 | 67.955 | -0.13% |
| 2026-08-29 | 68.0447 | — |
GBP to EGP conversion table
1 GBP68.6636 EGP
5 GBP343.3179 EGP
10 GBP686.6358 EGP
25 GBP1,716.5894 EGP
50 GBP3,433.1788 EGP
100 GBP6,866.3576 EGP
500 GBP34,331.788 EGP
1,000 GBP68,663.576 EGP
5,000 GBP343,317.88 EGP
10,000 GBP686,635.76 EGP
Get the GBP/EGP rate in your app
One GET request returns the latest GBP → 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/GBP/EGP"fetch('https://rate-api.com/api/v1/pair/GBP/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/EGP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "EGP"
},
"rate": 68.6636,
"timestamp": 1790470843,
"date": "2026-09-27"
}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 GBPEgyptian Pound → British Pound0.014564Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.