Convert CHF to CAD
Swiss Franc → Canadian Dollar
1 CHF = 1.707464 CAD(1 CAD = 0.585664 CHF)
Currency converter
1 CHF =
1.7075 CAD
CHF to CAD: last 30 days
Over the last 30 days, 1 CHF traded between 1.6968 and 1.7226 CAD, averaging 1.7063 CAD. The CHF/CAD rate is down 0.88% since 2026-08-28.
- 30-day high
- 1.7226
- 2026-08-28
- 30-day low
- 1.6968
- 2026-09-18
- 30-day average
- 1.7063
- Days with data: 30
- 30-day change
- -0.88%
- since 2026-08-28
1.7226
1.69682026-08-28 → 2026-09-26
| Date | 1 CHF in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 1.7075 | 0.00% |
| 2026-09-25 | 1.7075 | +0.12% |
| 2026-09-24 | 1.7055 | -0.39% |
| 2026-09-23 | 1.7121 | -0.10% |
| 2026-09-22 | 1.7139 | +0.53% |
| 2026-09-21 | 1.7049 | +0.47% |
| 2026-09-20 | 1.6968 | 0.00% |
| 2026-09-19 | 1.6968 | 0.00% |
| 2026-09-18 | 1.6968 | -0.03% |
| 2026-09-17 | 1.6974 | -0.26% |
| 2026-09-16 | 1.7019 | +0.03% |
| 2026-09-15 | 1.7013 | +0.03% |
| 2026-09-14 | 1.7009 | +0.07% |
| 2026-09-13 | 1.6997 | 0.00% |
| 2026-09-12 | 1.6997 | 0.00% |
| Date | 1 CHF in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 1.6997 | -0.10% |
| 2026-09-10 | 1.7015 | -0.26% |
| 2026-09-09 | 1.7059 | +0.28% |
| 2026-09-08 | 1.7011 | -0.39% |
| 2026-09-07 | 1.7078 | +0.14% |
| 2026-09-06 | 1.7053 | 0.00% |
| 2026-09-05 | 1.7053 | 0.00% |
| 2026-09-04 | 1.7053 | -0.04% |
| 2026-09-03 | 1.706 | -0.28% |
| 2026-09-02 | 1.7108 | -0.16% |
| 2026-09-01 | 1.7134 | -0.23% |
| 2026-08-31 | 1.7174 | -0.30% |
| 2026-08-30 | 1.7226 | 0.00% |
| 2026-08-29 | 1.7226 | 0.00% |
| 2026-08-28 | 1.7226 | — |
CHF to CAD conversion table
1 CHF1.7075 CAD
5 CHF8.5373 CAD
10 CHF17.0746 CAD
25 CHF42.6866 CAD
50 CHF85.3732 CAD
100 CHF170.7464 CAD
500 CHF853.7321 CAD
1,000 CHF1,707.4643 CAD
5,000 CHF8,537.3213 CAD
10,000 CHF17,074.643 CAD
Get the CHF/CAD rate in your app
One GET request returns the latest CHF → 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/CHF/CAD"fetch('https://rate-api.com/api/v1/pair/CHF/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "CAD"
},
"rate": 1.7075,
"timestamp": 1790429346,
"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 CHFCanadian Dollar → Swiss Franc0.58566Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.