Convert CAD to SGD
Canadian Dollar → Singapore Dollar
1 CAD = 0.90302 SGD(1 SGD = 1.107396 CAD)
Currency converter
1 CAD =
0.90302 SGD
CAD to SGD: last 30 days
Over the last 30 days, 1 CAD traded between 0.90302 and 0.91923 SGD, averaging 0.91385 SGD. The CAD/SGD rate is down 1.59% since 2026-08-28.
- 30-day high
- 0.91923
- 2026-09-03
- 30-day low
- 0.90302
- 2026-09-25
- 30-day average
- 0.91385
- Days with data: 30
- 30-day change
- -1.59%
- since 2026-08-28
0.91923
0.903022026-08-28 → 2026-09-26
| Date | 1 CAD in SGD | Daily change |
|---|---|---|
| 2026-09-26 | 0.90302 | 0.00% |
| 2026-09-25 | 0.90302 | -0.40% |
| 2026-09-24 | 0.90665 | -0.07% |
| 2026-09-23 | 0.90732 | -0.04% |
| 2026-09-22 | 0.90765 | -0.29% |
| 2026-09-21 | 0.91031 | -0.24% |
| 2026-09-20 | 0.91249 | 0.00% |
| 2026-09-19 | 0.91249 | 0.00% |
| 2026-09-18 | 0.91249 | +0.14% |
| 2026-09-17 | 0.91125 | -0.24% |
| 2026-09-16 | 0.91348 | -0.07% |
| 2026-09-15 | 0.91415 | -0.08% |
| 2026-09-14 | 0.91488 | -0.00% |
| 2026-09-13 | 0.91492 | 0.00% |
| 2026-09-12 | 0.91492 | 0.00% |
| Date | 1 CAD in SGD | Daily change |
|---|---|---|
| 2026-09-11 | 0.91492 | -0.18% |
| 2026-09-10 | 0.91662 | -0.11% |
| 2026-09-09 | 0.91764 | +0.08% |
| 2026-09-08 | 0.91691 | +0.08% |
| 2026-09-07 | 0.91621 | -0.20% |
| 2026-09-06 | 0.91804 | 0.00% |
| 2026-09-05 | 0.91804 | 0.00% |
| 2026-09-04 | 0.91804 | -0.13% |
| 2026-09-03 | 0.91923 | +0.54% |
| 2026-09-02 | 0.91433 | -0.28% |
| 2026-09-01 | 0.91691 | +0.04% |
| 2026-08-31 | 0.91653 | -0.12% |
| 2026-08-30 | 0.91764 | 0.00% |
| 2026-08-29 | 0.91764 | 0.00% |
| 2026-08-28 | 0.91764 | — |
CAD to SGD conversion table
1 CAD0.90302 SGD
5 CAD4.5151 SGD
10 CAD9.0302 SGD
25 CAD22.5755 SGD
50 CAD45.151 SGD
100 CAD90.302 SGD
500 CAD451.5099 SGD
1,000 CAD903.0198 SGD
5,000 CAD4,515.0989 SGD
10,000 CAD9,030.1978 SGD
Get the CAD/SGD rate in your app
One GET request returns the latest CAD → 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/CAD/SGD"fetch('https://rate-api.com/api/v1/pair/CAD/SGD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} SGD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/SGD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} SGD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/SGD');
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']} SGD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "SGD"
},
"rate": 0.903,
"timestamp": 1790447451,
"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 CADSingapore Dollar → Canadian Dollar1.1074Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.