Convert AUD to SEK
Australian Dollar → Swedish Krona
1 AUD = 6.960543 SEK(1 SEK = 0.143667 AUD)
Currency converter
1 AUD =
6.9605 SEK
AUD to SEK: last 30 days
Over the last 30 days, 1 AUD traded between 6.8483 and 7.0153 SEK, averaging 6.934 SEK. The AUD/SEK rate is up 1.58% since 2026-08-28.
- 30-day high
- 7.0153
- 2026-09-18
- 30-day low
- 6.8483
- 2026-09-01
- 30-day average
- 6.934
- Days with data: 30
- 30-day change
- +1.58%
- since 2026-08-28
7.0153
6.84832026-08-28 → 2026-09-26
| Date | 1 AUD in SEK | Daily change |
|---|---|---|
| 2026-09-26 | 6.9605 | 0.00% |
| 2026-09-25 | 6.9605 | -0.04% |
| 2026-09-24 | 6.9633 | -0.26% |
| 2026-09-23 | 6.9813 | +0.08% |
| 2026-09-22 | 6.976 | -0.40% |
| 2026-09-21 | 7.0042 | -0.16% |
| 2026-09-20 | 7.0153 | 0.00% |
| 2026-09-19 | 7.0153 | 0.00% |
| 2026-09-18 | 7.0153 | +0.45% |
| 2026-09-17 | 6.9841 | +0.09% |
| 2026-09-16 | 6.9779 | +0.23% |
| 2026-09-15 | 6.9619 | -0.02% |
| 2026-09-14 | 6.963 | +0.14% |
| 2026-09-13 | 6.9531 | 0.00% |
| 2026-09-12 | 6.9531 | 0.00% |
| Date | 1 AUD in SEK | Daily change |
|---|---|---|
| 2026-09-11 | 6.9531 | +0.37% |
| 2026-09-10 | 6.9273 | +0.20% |
| 2026-09-09 | 6.9133 | -0.20% |
| 2026-09-08 | 6.9275 | -0.02% |
| 2026-09-07 | 6.9289 | +0.71% |
| 2026-09-06 | 6.8803 | 0.00% |
| 2026-09-05 | 6.8803 | 0.00% |
| 2026-09-04 | 6.8803 | -0.13% |
| 2026-09-03 | 6.8894 | +0.02% |
| 2026-09-02 | 6.8879 | +0.58% |
| 2026-09-01 | 6.8483 | -0.19% |
| 2026-08-31 | 6.8616 | +0.14% |
| 2026-08-30 | 6.8521 | 0.00% |
| 2026-08-29 | 6.8521 | 0.00% |
| 2026-08-28 | 6.8521 | — |
AUD to SEK conversion table
1 AUD6.9605 SEK
5 AUD34.8027 SEK
10 AUD69.6054 SEK
25 AUD174.0136 SEK
50 AUD348.0271 SEK
100 AUD696.0543 SEK
500 AUD3,480.2713 SEK
1,000 AUD6,960.5425 SEK
5,000 AUD34,802.713 SEK
10,000 AUD69,605.425 SEK
Get the AUD/SEK rate in your app
One GET request returns the latest AUD → SEK 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/AUD/SEK"fetch('https://rate-api.com/api/v1/pair/AUD/SEK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} SEK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/SEK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} SEK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/SEK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} SEK\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "SEK"
},
"rate": 6.9605,
"timestamp": 1790429339,
"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
SEK to AUDSwedish Krona → Australian Dollar0.14367Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.