Convert CHF to SGD
Swiss Franc → Singapore Dollar
1 CHF = 1.541874 SGD(1 SGD = 0.648561 CHF)
Currency converter
1 CHF =
1.5419 SGD
CHF to SGD: last 30 days
Over the last 30 days, 1 CHF traded between 1.5419 and 1.5807 SGD, averaging 1.5593 SGD. The CHF/SGD rate is down 2.46% since 2026-08-28.
- 30-day high
- 1.5807
- 2026-08-28
- 30-day low
- 1.5419
- 2026-09-25
- 30-day average
- 1.5593
- Days with data: 30
- 30-day change
- -2.46%
- since 2026-08-28
1.5807
1.54192026-08-28 → 2026-09-26
| Date | 1 CHF in SGD | Daily change |
|---|---|---|
| 2026-09-26 | 1.5419 | 0.00% |
| 2026-09-25 | 1.5419 | -0.29% |
| 2026-09-24 | 1.5463 | -0.46% |
| 2026-09-23 | 1.5535 | -0.14% |
| 2026-09-22 | 1.5556 | +0.23% |
| 2026-09-21 | 1.552 | +0.23% |
| 2026-09-20 | 1.5484 | 0.00% |
| 2026-09-19 | 1.5484 | 0.00% |
| 2026-09-18 | 1.5484 | +0.10% |
| 2026-09-17 | 1.5468 | -0.51% |
| 2026-09-16 | 1.5547 | -0.04% |
| 2026-09-15 | 1.5553 | -0.05% |
| 2026-09-14 | 1.5561 | +0.06% |
| 2026-09-13 | 1.5551 | 0.00% |
| 2026-09-12 | 1.5551 | 0.00% |
| Date | 1 CHF in SGD | Daily change |
|---|---|---|
| 2026-09-11 | 1.5551 | -0.29% |
| 2026-09-10 | 1.5596 | -0.37% |
| 2026-09-09 | 1.5654 | +0.36% |
| 2026-09-08 | 1.5598 | -0.31% |
| 2026-09-07 | 1.5647 | -0.06% |
| 2026-09-06 | 1.5655 | 0.00% |
| 2026-09-05 | 1.5655 | 0.00% |
| 2026-09-04 | 1.5655 | -0.17% |
| 2026-09-03 | 1.5682 | +0.26% |
| 2026-09-02 | 1.5642 | -0.44% |
| 2026-09-01 | 1.5711 | -0.19% |
| 2026-08-31 | 1.5741 | -0.42% |
| 2026-08-30 | 1.5807 | 0.00% |
| 2026-08-29 | 1.5807 | 0.00% |
| 2026-08-28 | 1.5807 | — |
CHF to SGD conversion table
1 CHF1.5419 SGD
5 CHF7.7094 SGD
10 CHF15.4187 SGD
25 CHF38.5469 SGD
50 CHF77.0937 SGD
100 CHF154.1874 SGD
500 CHF770.937 SGD
1,000 CHF1,541.874 SGD
5,000 CHF7,709.37 SGD
10,000 CHF15,418.74 SGD
Get the CHF/SGD rate in your app
One GET request returns the latest CHF → SGD 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/SGD"fetch('https://rate-api.com/api/v1/pair/CHF/SGD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CHF = ${data.rate} SGD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CHF/SGD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CHF = {data['rate']} SGD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CHF/SGD');
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']} SGD\n";Example response
{
"success": true,
"pair": {
"from": "CHF",
"to": "SGD"
},
"rate": 1.5419,
"timestamp": 1790437898,
"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
SGD to CHFSingapore Dollar → Swiss Franc0.64856Convert CHF to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.