Convert SEK to USD
Swedish Krona → US Dollar
1 SEK = 0.101001 USD(1 USD = 9.900903 SEK)
Currency converter
1 SEK =
0.101 USD
SEK to USD: last 30 days
Over the last 30 days, 1 SEK traded between 0.10091 and 0.105 USD, averaging 0.10311 USD. The SEK/USD rate is down 3.81% since 2026-08-28.
- 30-day high
- 0.105
- 2026-08-28
- 30-day low
- 0.10091
- 2026-09-24
- 30-day average
- 0.10311
- Days with data: 30
- 30-day change
- -3.81%
- since 2026-08-28
0.105
0.100912026-08-28 → 2026-09-26
| Date | 1 SEK in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.101 | 0.00% |
| 2026-09-25 | 0.101 | +0.09% |
| 2026-09-24 | 0.10091 | -0.32% |
| 2026-09-23 | 0.10123 | -0.68% |
| 2026-09-22 | 0.10193 | +0.02% |
| 2026-09-21 | 0.10191 | +0.41% |
| 2026-09-20 | 0.10149 | 0.00% |
| 2026-09-19 | 0.10149 | 0.00% |
| 2026-09-18 | 0.10149 | -0.36% |
| 2026-09-17 | 0.10186 | -0.34% |
| 2026-09-16 | 0.10221 | -0.14% |
| 2026-09-15 | 0.10235 | -0.04% |
| 2026-09-14 | 0.10239 | -0.74% |
| 2026-09-13 | 0.10316 | 0.00% |
| 2026-09-12 | 0.10316 | 0.00% |
| Date | 1 SEK in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.10316 | -0.54% |
| 2026-09-10 | 0.10372 | -0.75% |
| 2026-09-09 | 0.10451 | +0.35% |
| 2026-09-08 | 0.10414 | +0.02% |
| 2026-09-07 | 0.10412 | -0.55% |
| 2026-09-06 | 0.1047 | 0.00% |
| 2026-09-05 | 0.1047 | 0.00% |
| 2026-09-04 | 0.1047 | +0.28% |
| 2026-09-03 | 0.10441 | +0.62% |
| 2026-09-02 | 0.10377 | -0.49% |
| 2026-09-01 | 0.10428 | -0.09% |
| 2026-08-31 | 0.10437 | -0.60% |
| 2026-08-30 | 0.105 | 0.00% |
| 2026-08-29 | 0.105 | 0.00% |
| 2026-08-28 | 0.105 | — |
SEK to USD conversion table
1 SEK0.101 USD
5 SEK0.505 USD
10 SEK1.01 USD
25 SEK2.525 USD
50 SEK5.05 USD
100 SEK10.1001 USD
500 SEK50.5004 USD
1,000 SEK101.0009 USD
5,000 SEK505.0044 USD
10,000 SEK1,010.0089 USD
Get the SEK/USD rate in your app
One GET request returns the latest SEK → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/SEK/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SEK = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SEK/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SEK = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SEK/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "SEK",
"to": "USD"
},
"rate": 0.101,
"timestamp": 1790432092,
"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
USD to SEKUS Dollar → Swedish Krona9.9009Convert SEK to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.