Convert USD to SEK
US Dollar → Swedish Krona
1 USD = 9.900903 SEK(1 SEK = 0.101001 USD)
Currency converter
1 USD =
9.9009 SEK
USD to SEK: last 30 days
Over the last 30 days, 1 USD traded between 9.5237 and 9.9098 SEK, averaging 9.7006 SEK. The USD/SEK rate is up 3.96% since 2026-08-28.
- 30-day high
- 9.9098
- 2026-09-24
- 30-day low
- 9.5237
- 2026-08-28
- 30-day average
- 9.7006
- Days with data: 30
- 30-day change
- +3.96%
- since 2026-08-28
9.9098
9.52372026-08-28 → 2026-09-26
| Date | 1 USD in SEK | Daily change |
|---|---|---|
| 2026-09-26 | 9.9009 | 0.00% |
| 2026-09-25 | 9.9009 | -0.09% |
| 2026-09-24 | 9.9098 | +0.32% |
| 2026-09-23 | 9.8782 | +0.68% |
| 2026-09-22 | 9.811 | -0.02% |
| 2026-09-21 | 9.8129 | -0.41% |
| 2026-09-20 | 9.853 | 0.00% |
| 2026-09-19 | 9.853 | 0.00% |
| 2026-09-18 | 9.853 | +0.36% |
| 2026-09-17 | 9.8175 | +0.35% |
| 2026-09-16 | 9.7837 | +0.14% |
| 2026-09-15 | 9.7703 | +0.04% |
| 2026-09-14 | 9.7663 | +0.75% |
| 2026-09-13 | 9.694 | 0.00% |
| 2026-09-12 | 9.694 | 0.00% |
| Date | 1 USD in SEK | Daily change |
|---|---|---|
| 2026-09-11 | 9.694 | +0.55% |
| 2026-09-10 | 9.6414 | +0.76% |
| 2026-09-09 | 9.5687 | -0.35% |
| 2026-09-08 | 9.6022 | -0.02% |
| 2026-09-07 | 9.6042 | +0.55% |
| 2026-09-06 | 9.5513 | 0.00% |
| 2026-09-05 | 9.5513 | 0.00% |
| 2026-09-04 | 9.5513 | -0.28% |
| 2026-09-03 | 9.5777 | -0.61% |
| 2026-09-02 | 9.6368 | +0.49% |
| 2026-09-01 | 9.5897 | +0.09% |
| 2026-08-31 | 9.5809 | +0.60% |
| 2026-08-30 | 9.5237 | 0.00% |
| 2026-08-29 | 9.5237 | 0.00% |
| 2026-08-28 | 9.5237 | — |
USD to SEK conversion table
1 USD9.9009 SEK
5 USD49.5045 SEK
10 USD99.009 SEK
25 USD247.5226 SEK
50 USD495.0452 SEK
100 USD990.0903 SEK
500 USD4,950.4516 SEK
1,000 USD9,900.9033 SEK
5,000 USD49,504.516 SEK
10,000 USD99,009.033 SEK
Get the USD/SEK rate in your app
One GET request returns the latest USD → 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/USD/SEK"fetch('https://rate-api.com/api/v1/pair/USD/SEK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} SEK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/SEK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} SEK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/SEK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} SEK\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "SEK"
},
"rate": 9.9009,
"timestamp": 1790429342,
"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 USDSwedish Krona → US Dollar0.101Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.