Convert SEK to CAD
Swedish Krona → Canadian Dollar
1 SEK = 0.142843 CAD(1 CAD = 7.000682 SEK)
Currency converter
1 SEK =
0.14284 CAD
SEK to CAD: last 30 days
Over the last 30 days, 1 SEK traded between 0.14219 and 0.14547 CAD, averaging 0.14349 CAD. The SEK/CAD rate is down 1.80% since 2026-08-28.
- 30-day high
- 0.14547
- 2026-08-28
- 30-day low
- 0.14219
- 2026-09-18
- 30-day average
- 0.14349
- Days with data: 30
- 30-day change
- -1.80%
- since 2026-08-28
0.14547
0.142192026-08-28 → 2026-09-26
| Date | 1 SEK in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.14284 | 0.00% |
| 2026-09-25 | 0.14284 | +0.27% |
| 2026-09-24 | 0.14246 | -0.12% |
| 2026-09-23 | 0.14263 | -0.36% |
| 2026-09-22 | 0.14315 | +0.31% |
| 2026-09-21 | 0.14271 | +0.37% |
| 2026-09-20 | 0.14219 | 0.00% |
| 2026-09-19 | 0.14219 | 0.00% |
| 2026-09-18 | 0.14219 | -0.25% |
| 2026-09-17 | 0.14255 | +0.06% |
| 2026-09-16 | 0.14247 | -0.00% |
| 2026-09-15 | 0.14247 | +0.20% |
| 2026-09-14 | 0.14219 | -0.53% |
| 2026-09-13 | 0.14295 | 0.00% |
| 2026-09-12 | 0.14295 | 0.00% |
| Date | 1 SEK in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.14295 | -0.24% |
| 2026-09-10 | 0.1433 | -0.41% |
| 2026-09-09 | 0.14389 | +0.08% |
| 2026-09-08 | 0.14377 | -0.09% |
| 2026-09-07 | 0.1439 | -0.41% |
| 2026-09-06 | 0.14448 | 0.00% |
| 2026-09-05 | 0.14448 | 0.00% |
| 2026-09-04 | 0.14448 | +0.33% |
| 2026-09-03 | 0.144 | -0.34% |
| 2026-09-02 | 0.1445 | -0.22% |
| 2026-09-01 | 0.14482 | -0.08% |
| 2026-08-31 | 0.14493 | -0.37% |
| 2026-08-30 | 0.14547 | 0.00% |
| 2026-08-29 | 0.14547 | 0.00% |
| 2026-08-28 | 0.14547 | — |
SEK to CAD conversion table
1 SEK0.14284 CAD
5 SEK0.71422 CAD
10 SEK1.4284 CAD
25 SEK3.5711 CAD
50 SEK7.1422 CAD
100 SEK14.2843 CAD
500 SEK71.4216 CAD
1,000 SEK142.8432 CAD
5,000 SEK714.2161 CAD
10,000 SEK1,428.4322 CAD
Get the SEK/CAD rate in your app
One GET request returns the latest SEK → 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/SEK/CAD"fetch('https://rate-api.com/api/v1/pair/SEK/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SEK = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SEK/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SEK = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SEK/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SEK = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "SEK",
"to": "CAD"
},
"rate": 0.1428,
"timestamp": 1790432127,
"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 SEKCanadian Dollar → Swedish Krona7.0007Convert SEK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.