Convert CAD to CHF
Canadian Dollar → Swiss Franc
1 CAD = 0.585664 CHF(1 CHF = 1.707464 CAD)
Currency converter
1 CAD =
0.58566 CHF
CAD to CHF: last 30 days
Over the last 30 days, 1 CAD traded between 0.58053 and 0.58933 CHF, averaging 0.58606 CHF. The CAD/CHF rate is up 0.89% since 2026-08-28.
- 30-day high
- 0.58933
- 2026-09-18
- 30-day low
- 0.58053
- 2026-08-28
- 30-day average
- 0.58606
- Days with data: 30
- 30-day change
- +0.89%
- since 2026-08-28
0.58933
0.580532026-08-28 → 2026-09-26
| Date | 1 CAD in CHF | Daily change |
|---|---|---|
| 2026-09-26 | 0.58566 | 0.00% |
| 2026-09-25 | 0.58566 | -0.12% |
| 2026-09-24 | 0.58634 | +0.39% |
| 2026-09-23 | 0.58406 | +0.10% |
| 2026-09-22 | 0.58347 | -0.53% |
| 2026-09-21 | 0.58655 | -0.47% |
| 2026-09-20 | 0.58933 | 0.00% |
| 2026-09-19 | 0.58933 | 0.00% |
| 2026-09-18 | 0.58933 | +0.03% |
| 2026-09-17 | 0.58913 | +0.27% |
| 2026-09-16 | 0.58757 | -0.03% |
| 2026-09-15 | 0.58777 | -0.03% |
| 2026-09-14 | 0.58794 | -0.07% |
| 2026-09-13 | 0.58832 | 0.00% |
| 2026-09-12 | 0.58832 | 0.00% |
| Date | 1 CAD in CHF | Daily change |
|---|---|---|
| 2026-09-11 | 0.58832 | +0.10% |
| 2026-09-10 | 0.58771 | +0.26% |
| 2026-09-09 | 0.58619 | -0.28% |
| 2026-09-08 | 0.58784 | +0.39% |
| 2026-09-07 | 0.58556 | -0.14% |
| 2026-09-06 | 0.58641 | 0.00% |
| 2026-09-05 | 0.58641 | 0.00% |
| 2026-09-04 | 0.58641 | +0.04% |
| 2026-09-03 | 0.58617 | +0.28% |
| 2026-09-02 | 0.58453 | +0.16% |
| 2026-09-01 | 0.58362 | +0.23% |
| 2026-08-31 | 0.58228 | +0.30% |
| 2026-08-30 | 0.58053 | 0.00% |
| 2026-08-29 | 0.58053 | 0.00% |
| 2026-08-28 | 0.58053 | — |
CAD to CHF conversion table
1 CAD0.58566 CHF
5 CAD2.9283 CHF
10 CAD5.8566 CHF
25 CAD14.6416 CHF
50 CAD29.2832 CHF
100 CAD58.5664 CHF
500 CAD292.8319 CHF
1,000 CAD585.6638 CHF
5,000 CAD2,928.319 CHF
10,000 CAD5,856.6379 CHF
Get the CAD/CHF rate in your app
One GET request returns the latest CAD → CHF 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/CHF"fetch('https://rate-api.com/api/v1/pair/CAD/CHF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} CHF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/CHF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} CHF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/CHF');
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']} CHF\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "CHF"
},
"rate": 0.5857,
"timestamp": 1790429348,
"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
CHF to CADSwiss Franc → Canadian Dollar1.7075Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.