Convert EGP to AUD
Egyptian Pound → Australian Dollar
1 EGP = 0.0274704 AUD(1 AUD = 36.402761 EGP)
Currency converter
1 EGP =
0.02747 AUD
EGP to AUD: last 30 days
Over the last 30 days, 1 EGP traded between 0.0269 and 0.027781 AUD, averaging 0.027269 AUD. The EGP/AUD rate is down 0.70% since 2026-08-28.
- 30-day high
- 0.027781
- 2026-08-30
- 30-day low
- 0.0269
- 2026-09-19
- 30-day average
- 0.027269
- Days with data: 30
- 30-day change
- -0.70%
- since 2026-08-28
0.027781
0.02692026-08-28 → 2026-09-26
| Date | 1 EGP in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.02747 | 0.00% |
| 2026-09-25 | 0.02747 | -0.75% |
| 2026-09-24 | 0.027679 | +0.99% |
| 2026-09-23 | 0.027406 | +1.17% |
| 2026-09-22 | 0.027091 | +0.64% |
| 2026-09-21 | 0.026919 | -0.08% |
| 2026-09-20 | 0.02694 | +0.15% |
| 2026-09-19 | 0.0269 | -0.17% |
| 2026-09-18 | 0.026945 | +0.06% |
| 2026-09-17 | 0.02693 | -0.31% |
| 2026-09-16 | 0.027015 | -0.47% |
| 2026-09-15 | 0.027142 | -0.60% |
| 2026-09-14 | 0.027305 | +0.59% |
| 2026-09-13 | 0.027145 | +0.03% |
| 2026-09-12 | 0.027138 | -0.03% |
| Date | 1 EGP in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.027145 | -0.15% |
| 2026-09-10 | 0.027187 | +0.22% |
| 2026-09-09 | 0.027127 | -0.34% |
| 2026-09-08 | 0.027219 | +0.05% |
| 2026-09-07 | 0.027206 | -0.18% |
| 2026-09-06 | 0.027256 | -0.02% |
| 2026-09-05 | 0.027261 | +0.07% |
| 2026-09-04 | 0.027243 | +0.06% |
| 2026-09-03 | 0.027228 | -0.92% |
| 2026-09-02 | 0.02748 | -0.07% |
| 2026-09-01 | 0.0275 | -0.07% |
| 2026-08-31 | 0.02752 | -0.94% |
| 2026-08-30 | 0.027781 | +0.13% |
| 2026-08-29 | 0.027744 | +0.28% |
| 2026-08-28 | 0.027665 | — |
EGP to AUD conversion table
1 EGP0.02747 AUD
5 EGP0.13735 AUD
10 EGP0.2747 AUD
25 EGP0.68676 AUD
50 EGP1.3735 AUD
100 EGP2.747 AUD
500 EGP13.7352 AUD
1,000 EGP27.4704 AUD
5,000 EGP137.3522 AUD
10,000 EGP274.7044 AUD
Get the EGP/AUD rate in your app
One GET request returns the latest EGP → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/EGP/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "AUD"
},
"rate": 0.0275,
"timestamp": 1790435072,
"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
AUD to EGPAustralian Dollar → Egyptian Pound36.4028Convert EGP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.