Convert CAD to EGP
Canadian Dollar → Egyptian Pound
1 CAD = 36.635192 EGP(1 EGP = 0.0272962 CAD)
Currency converter
1 CAD =
36.6352 EGP
CAD to EGP: last 30 days
Over the last 30 days, 1 CAD traded between 36.1132 and 37.2982 EGP, averaging 36.8762 EGP. The CAD/EGP rate is up 1.31% since 2026-08-29.
- 30-day high
- 37.2982
- 2026-09-17
- 30-day low
- 36.1132
- 2026-08-30
- 30-day average
- 36.8762
- Days with data: 30
- 30-day change
- +1.31%
- since 2026-08-29
37.2982
36.11322026-08-29 → 2026-09-27
| Date | 1 CAD in EGP | Daily change |
|---|---|---|
| 2026-09-27 | 36.6352 | 0.00% |
| 2026-09-26 | 36.6352 | +0.06% |
| 2026-09-25 | 36.6127 | +0.52% |
| 2026-09-24 | 36.4216 | -0.61% |
| 2026-09-23 | 36.6443 | -0.87% |
| 2026-09-22 | 36.9654 | -0.54% |
| 2026-09-21 | 37.1643 | -0.13% |
| 2026-09-20 | 37.212 | -0.15% |
| 2026-09-19 | 37.2679 | +0.17% |
| 2026-09-18 | 37.2057 | -0.25% |
| 2026-09-17 | 37.2982 | +0.17% |
| 2026-09-16 | 37.2345 | +0.24% |
| 2026-09-15 | 37.1449 | +0.42% |
| 2026-09-14 | 36.9902 | -0.19% |
| 2026-09-13 | 37.0621 | -0.03% |
| Date | 1 CAD in EGP | Daily change |
|---|---|---|
| 2026-09-12 | 37.0726 | +0.03% |
| 2026-09-11 | 37.0619 | +0.02% |
| 2026-09-10 | 37.0536 | -0.01% |
| 2026-09-09 | 37.059 | +0.46% |
| 2026-09-08 | 36.8877 | +0.06% |
| 2026-09-07 | 36.8651 | -0.11% |
| 2026-09-06 | 36.9066 | +0.02% |
| 2026-09-05 | 36.8999 | -0.07% |
| 2026-09-04 | 36.9243 | -0.26% |
| 2026-09-03 | 37.0201 | +1.25% |
| 2026-09-02 | 36.5619 | -0.28% |
| 2026-09-01 | 36.665 | +0.35% |
| 2026-08-31 | 36.5385 | +1.18% |
| 2026-08-30 | 36.1132 | -0.13% |
| 2026-08-29 | 36.1609 | — |
CAD to EGP conversion table
1 CAD36.6352 EGP
5 CAD183.176 EGP
10 CAD366.3519 EGP
25 CAD915.8798 EGP
50 CAD1,831.7596 EGP
100 CAD3,663.5192 EGP
500 CAD18,317.596 EGP
1,000 CAD36,635.192 EGP
5,000 CAD183,175.96 EGP
10,000 CAD366,351.92 EGP
Get the CAD/EGP rate in your app
One GET request returns the latest CAD → 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/CAD/EGP"fetch('https://rate-api.com/api/v1/pair/CAD/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/EGP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "EGP"
},
"rate": 36.6352,
"timestamp": 1790470822,
"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 CADEgyptian Pound → Canadian Dollar0.027296Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.