Convert SEK to AUD
Swedish Krona → Australian Dollar
1 SEK = 0.143667 AUD(1 AUD = 6.960543 SEK)
Currency converter
1 SEK =
0.14367 AUD
SEK to AUD: last 30 days
Over the last 30 days, 1 SEK traded between 0.14255 and 0.14602 AUD, averaging 0.14423 AUD. The SEK/AUD rate is down 1.56% since 2026-08-28.
- 30-day high
- 0.14602
- 2026-09-01
- 30-day low
- 0.14255
- 2026-09-18
- 30-day average
- 0.14423
- Days with data: 30
- 30-day change
- -1.56%
- since 2026-08-28
0.14602
0.142552026-08-28 → 2026-09-26
| Date | 1 SEK in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.14367 | 0.00% |
| 2026-09-25 | 0.14367 | +0.04% |
| 2026-09-24 | 0.14361 | +0.26% |
| 2026-09-23 | 0.14324 | -0.08% |
| 2026-09-22 | 0.14335 | +0.40% |
| 2026-09-21 | 0.14277 | +0.16% |
| 2026-09-20 | 0.14255 | 0.00% |
| 2026-09-19 | 0.14255 | 0.00% |
| 2026-09-18 | 0.14255 | -0.45% |
| 2026-09-17 | 0.14318 | -0.09% |
| 2026-09-16 | 0.14331 | -0.23% |
| 2026-09-15 | 0.14364 | +0.02% |
| 2026-09-14 | 0.14362 | -0.14% |
| 2026-09-13 | 0.14382 | 0.00% |
| 2026-09-12 | 0.14382 | 0.00% |
| Date | 1 SEK in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.14382 | -0.37% |
| 2026-09-10 | 0.14436 | -0.20% |
| 2026-09-09 | 0.14465 | +0.21% |
| 2026-09-08 | 0.14435 | +0.02% |
| 2026-09-07 | 0.14432 | -0.70% |
| 2026-09-06 | 0.14534 | 0.00% |
| 2026-09-05 | 0.14534 | 0.00% |
| 2026-09-04 | 0.14534 | +0.13% |
| 2026-09-03 | 0.14515 | -0.02% |
| 2026-09-02 | 0.14518 | -0.57% |
| 2026-09-01 | 0.14602 | +0.19% |
| 2026-08-31 | 0.14574 | -0.14% |
| 2026-08-30 | 0.14594 | 0.00% |
| 2026-08-29 | 0.14594 | 0.00% |
| 2026-08-28 | 0.14594 | — |
SEK to AUD conversion table
1 SEK0.14367 AUD
5 SEK0.71833 AUD
10 SEK1.4367 AUD
25 SEK3.5917 AUD
50 SEK7.1833 AUD
100 SEK14.3667 AUD
500 SEK71.8335 AUD
1,000 SEK143.667 AUD
5,000 SEK718.3348 AUD
10,000 SEK1,436.6696 AUD
Get the SEK/AUD rate in your app
One GET request returns the latest SEK → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/SEK/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SEK = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SEK/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SEK = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SEK/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "SEK",
"to": "AUD"
},
"rate": 0.1437,
"timestamp": 1790432088,
"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
AUD to SEKAustralian Dollar → Swedish Krona6.9605Convert SEK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.