Convert CHF to EUR
Swiss Franc → Euro
1 CHF = 1.058761 EUR(1 EUR = 0.9445 CHF)
Currency converter
1 CHF =
1.0588 EUR
CHF to EUR: last 30 days
Over the last 30 days, 1 CHF traded between 1.0564 and 1.0679 EUR, averaging 1.0616 EUR. The CHF/EUR rate is down 0.86% since 2026-08-28.
- 30-day high
- 1.0679
- 2026-08-28
- 30-day low
- 1.0564
- 2026-09-17
- 30-day average
- 1.0616
- Days with data: 30
- 30-day change
- -0.86%
- since 2026-08-28
1.0679
1.05642026-08-28 → 2026-09-26
| Date | 1 CHF in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 1.0588 | 0.00% |
| 2026-09-25 | 1.0588 | -0.38% |
| 2026-09-24 | 1.0628 | -0.20% |
| 2026-09-23 | 1.065 | +0.03% |
| 2026-09-22 | 1.0646 | +0.48% |
| 2026-09-21 | 1.0595 | +0.25% |
| 2026-09-20 | 1.0569 | 0.00% |
| 2026-09-19 | 1.0569 | 0.00% |
| 2026-09-18 | 1.0569 | +0.04% |
| 2026-09-17 | 1.0564 | -0.18% |
| 2026-09-16 | 1.0583 | -0.09% |
| 2026-09-15 | 1.0592 | -0.11% |
| 2026-09-14 | 1.0603 | +0.21% |
| 2026-09-13 | 1.0581 | 0.00% |
| 2026-09-12 | 1.0581 | 0.00% |
| Date | 1 CHF in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 1.0581 | -0.20% |
| 2026-09-10 | 1.0602 | -0.30% |
| 2026-09-09 | 1.0634 | +0.22% |
| 2026-09-08 | 1.061 | -0.21% |
| 2026-09-07 | 1.0633 | 0.00% |
| 2026-09-06 | 1.0633 | 0.00% |
| 2026-09-05 | 1.0633 | 0.00% |
| 2026-09-04 | 1.0633 | -0.16% |
| 2026-09-03 | 1.065 | +0.36% |
| 2026-09-02 | 1.0611 | -0.32% |
| 2026-09-01 | 1.0645 | -0.19% |
| 2026-08-31 | 1.0666 | -0.13% |
| 2026-08-30 | 1.0679 | 0.00% |
| 2026-08-29 | 1.0679 | 0.00% |
| 2026-08-28 | 1.0679 | — |
CHF to EUR conversion table
1 CHF1.0588 EUR
5 CHF5.2938 EUR
10 CHF10.5876 EUR
25 CHF26.469 EUR
50 CHF52.9381 EUR
100 CHF105.8761 EUR
500 CHF529.3806 EUR
1,000 CHF1,058.7612 EUR
5,000 CHF5,293.8062 EUR
10,000 CHF10,587.612 EUR
Get the CHF/EUR rate in your app
One GET request returns the latest CHF → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/CHF/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "EUR"
},
"rate": 1.0588,
"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
EUR to CHFEuro → Swiss Franc0.9445Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.