Convert CHF to EGP
Swiss Franc → Egyptian Pound
1 CHF = 62.514853 EGP(1 EGP = 0.0159962 CHF)
Currency converter
1 CHF =
62.5149 EGP
CHF to EGP: last 30 days
Over the last 30 days, 1 CHF traded between 62.1169 and 63.3699 EGP, averaging 62.8987 EGP. The CHF/EGP rate is up 0.08% since 2026-08-28.
- 30-day high
- 63.3699
- 2026-09-16
- 30-day low
- 62.1169
- 2026-09-24
- 30-day average
- 62.8987
- Days with data: 30
- 30-day change
- +0.08%
- since 2026-08-28
63.3699
62.11692026-08-28 → 2026-09-26
| Date | 1 CHF in EGP | Daily change |
|---|---|---|
| 2026-09-26 | 62.5149 | 0.00% |
| 2026-09-25 | 62.5149 | +0.64% |
| 2026-09-24 | 62.1169 | -0.99% |
| 2026-09-23 | 62.7402 | -0.97% |
| 2026-09-22 | 63.3548 | -0.01% |
| 2026-09-21 | 63.3604 | +0.34% |
| 2026-09-20 | 63.143 | -0.15% |
| 2026-09-19 | 63.2379 | +0.17% |
| 2026-09-18 | 63.1323 | -0.28% |
| 2026-09-17 | 63.3104 | -0.09% |
| 2026-09-16 | 63.3699 | +0.28% |
| 2026-09-15 | 63.1959 | +0.45% |
| 2026-09-14 | 62.9151 | -0.13% |
| 2026-09-13 | 62.9961 | -0.03% |
| 2026-09-12 | 63.0139 | +0.03% |
| Date | 1 CHF in EGP | Daily change |
|---|---|---|
| 2026-09-11 | 62.9956 | -0.08% |
| 2026-09-10 | 63.0474 | -0.27% |
| 2026-09-09 | 63.2199 | +0.75% |
| 2026-09-08 | 62.7507 | -0.33% |
| 2026-09-07 | 62.9573 | +0.03% |
| 2026-09-06 | 62.937 | +0.02% |
| 2026-09-05 | 62.9256 | -0.07% |
| 2026-09-04 | 62.9672 | -0.30% |
| 2026-09-03 | 63.1563 | +0.97% |
| 2026-09-02 | 62.5491 | -0.44% |
| 2026-09-01 | 62.8236 | +0.12% |
| 2026-08-31 | 62.751 | +0.87% |
| 2026-08-30 | 62.2077 | -0.13% |
| 2026-08-29 | 62.2899 | -0.28% |
| 2026-08-28 | 62.4672 | — |
CHF to EGP conversion table
1 CHF62.5149 EGP
5 CHF312.5743 EGP
10 CHF625.1485 EGP
25 CHF1,562.8713 EGP
50 CHF3,125.7426 EGP
100 CHF6,251.4853 EGP
500 CHF31,257.426 EGP
1,000 CHF62,514.853 EGP
5,000 CHF312,574.26 EGP
10,000 CHF625,148.53 EGP
Get the CHF/EGP rate in your app
One GET request returns the latest CHF → 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/CHF/EGP"fetch('https://rate-api.com/api/v1/pair/CHF/EGP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} EGP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/EGP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} EGP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/EGP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CHF = {$data['rate']} EGP\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "EGP"
},
"rate": 62.5149,
"timestamp": 1790429356,
"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
EGP to CHFEgyptian Pound → Swiss Franc0.015996Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.