Convert EGP to CAD
Egyptian Pound → Canadian Dollar
1 EGP = 0.0273129 CAD(1 CAD = 36.612686 EGP)
Currency converter
1 EGP =
0.027313 CAD
EGP to CAD: last 30 days
Over the last 30 days, 1 EGP traded between 0.026811 and 0.027691 CAD, averaging 0.02713 CAD. The EGP/CAD rate is down 0.95% since 2026-08-28.
- 30-day high
- 0.027691
- 2026-08-30
- 30-day low
- 0.026811
- 2026-09-17
- 30-day average
- 0.02713
- Days with data: 30
- 30-day change
- -0.95%
- since 2026-08-28
0.027691
0.0268112026-08-28 → 2026-09-26
| Date | 1 EGP in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.027313 | 0.00% |
| 2026-09-25 | 0.027313 | -0.52% |
| 2026-09-24 | 0.027456 | +0.61% |
| 2026-09-23 | 0.027289 | +0.88% |
| 2026-09-22 | 0.027052 | +0.54% |
| 2026-09-21 | 0.026908 | +0.13% |
| 2026-09-20 | 0.026873 | +0.15% |
| 2026-09-19 | 0.026833 | -0.17% |
| 2026-09-18 | 0.026878 | +0.25% |
| 2026-09-17 | 0.026811 | -0.17% |
| 2026-09-16 | 0.026857 | -0.24% |
| 2026-09-15 | 0.026922 | -0.42% |
| 2026-09-14 | 0.027034 | +0.19% |
| 2026-09-13 | 0.026982 | +0.03% |
| 2026-09-12 | 0.026974 | -0.03% |
| Date | 1 EGP in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.026982 | -0.02% |
| 2026-09-10 | 0.026988 | +0.01% |
| 2026-09-09 | 0.026984 | -0.46% |
| 2026-09-08 | 0.027109 | -0.06% |
| 2026-09-07 | 0.027126 | +0.11% |
| 2026-09-06 | 0.027095 | -0.02% |
| 2026-09-05 | 0.0271 | +0.07% |
| 2026-09-04 | 0.027082 | +0.26% |
| 2026-09-03 | 0.027012 | -1.24% |
| 2026-09-02 | 0.027351 | +0.28% |
| 2026-09-01 | 0.027274 | -0.35% |
| 2026-08-31 | 0.027368 | -1.16% |
| 2026-08-30 | 0.027691 | +0.13% |
| 2026-08-29 | 0.027654 | +0.28% |
| 2026-08-28 | 0.027576 | — |
EGP to CAD conversion table
1 EGP0.027313 CAD
5 EGP0.13656 CAD
10 EGP0.27313 CAD
25 EGP0.68282 CAD
50 EGP1.3656 CAD
100 EGP2.7313 CAD
500 EGP13.6565 CAD
1,000 EGP27.3129 CAD
5,000 EGP136.5647 CAD
10,000 EGP273.1294 CAD
Get the EGP/CAD rate in your app
One GET request returns the latest EGP → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/EGP/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EGP = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EGP/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EGP = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EGP/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "EGP",
"to": "CAD"
},
"rate": 0.0273,
"timestamp": 1790435212,
"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
CAD to EGPCanadian Dollar → Egyptian Pound36.6127Convert EGP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.