Convert EGP to RUB
Egyptian Pound → Russian Ruble
1 EGP = 1.641798 RUB(1 RUB = 0.609088 EGP)
Currency converter
1 EGP =
1.6418 RUB
EGP to RUB: last 30 days
Over the last 30 days, 1 EGP traded between 1.6129 and 1.7202 RUB, averaging 1.6615 RUB. The EGP/RUB rate is down 3.50% since 2026-08-28.
- 30-day high
- 1.7202
- 2026-08-29
- 30-day low
- 1.6129
- 2026-09-20
- 30-day average
- 1.6615
- Days with data: 30
- 30-day change
- -3.50%
- since 2026-08-28
1.7202
1.61292026-08-28 → 2026-09-26
| Date | 1 EGP in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 1.6418 | 0.00% |
| 2026-09-25 | 1.6418 | -0.50% |
| 2026-09-24 | 1.65 | +1.06% |
| 2026-09-23 | 1.6328 | +1.20% |
| 2026-09-22 | 1.6134 | -0.23% |
| 2026-09-21 | 1.6172 | +0.27% |
| 2026-09-20 | 1.6129 | -0.22% |
| 2026-09-19 | 1.6164 | -0.29% |
| 2026-09-18 | 1.6211 | +0.46% |
| 2026-09-17 | 1.6136 | -0.53% |
| 2026-09-16 | 1.6223 | -0.75% |
| 2026-09-15 | 1.6345 | -0.68% |
| 2026-09-14 | 1.6456 | +0.28% |
| 2026-09-13 | 1.641 | +0.14% |
| 2026-09-12 | 1.6387 | +0.25% |
| Date | 1 EGP in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 1.6347 | -1.54% |
| 2026-09-10 | 1.6603 | -1.32% |
| 2026-09-09 | 1.6825 | -0.65% |
| 2026-09-08 | 1.6935 | -0.39% |
| 2026-09-07 | 1.7 | +0.03% |
| 2026-09-06 | 1.6995 | +0.84% |
| 2026-09-05 | 1.6854 | -0.90% |
| 2026-09-04 | 1.7007 | -0.53% |
| 2026-09-03 | 1.7098 | +0.26% |
| 2026-09-02 | 1.7054 | +0.60% |
| 2026-09-01 | 1.6952 | +0.04% |
| 2026-08-31 | 1.6944 | -1.45% |
| 2026-08-30 | 1.7193 | -0.05% |
| 2026-08-29 | 1.7202 | +1.12% |
| 2026-08-28 | 1.7013 | — |
EGP to RUB conversion table
1 EGP1.6418 RUB
5 EGP8.209 RUB
10 EGP16.418 RUB
25 EGP41.0449 RUB
50 EGP82.0899 RUB
100 EGP164.1798 RUB
500 EGP820.8988 RUB
1,000 EGP1,641.7976 RUB
5,000 EGP8,208.9882 RUB
10,000 EGP16,417.976 RUB
Get the EGP/RUB rate in your app
One GET request returns the latest EGP → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/EGP/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "RUB"
},
"rate": 1.6418,
"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
RUB to EGPRussian Ruble → Egyptian Pound0.60909Convert EGP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.