Convert EUR to SEK
Euro → Swedish Krona
1 EUR = 11.29 SEK(1 SEK = 0.088574 EUR)
Currency converter
1 EUR =
11.29 SEK
EUR to SEK: last 30 days
Over the last 30 days, 1 EUR traded between 11.0884 and 11.2915 SEK, averaging 11.2025 SEK. The EUR/SEK rate is up 1.82% since 2026-08-28.
- 30-day high
- 11.2915
- 2026-09-18
- 30-day low
- 11.0884
- 2026-08-28
- 30-day average
- 11.2025
- Days with data: 30
- 30-day change
- +1.82%
- since 2026-08-28
11.2915
11.08842026-08-28 → 2026-09-26
| Date | 1 EUR in SEK | Daily change |
|---|---|---|
| 2026-09-26 | 11.29 | 0.00% |
| 2026-09-25 | 11.29 | +0.23% |
| 2026-09-24 | 11.2645 | -0.07% |
| 2026-09-23 | 11.272 | +0.23% |
| 2026-09-22 | 11.2464 | -0.25% |
| 2026-09-21 | 11.275 | -0.15% |
| 2026-09-20 | 11.2915 | 0.00% |
| 2026-09-19 | 11.2915 | 0.00% |
| 2026-09-18 | 11.2915 | +0.18% |
| 2026-09-17 | 11.2715 | -0.14% |
| 2026-09-16 | 11.2874 | +0.12% |
| 2026-09-15 | 11.2739 | -0.06% |
| 2026-09-14 | 11.281 | +0.39% |
| 2026-09-13 | 11.2373 | 0.00% |
| 2026-09-12 | 11.2373 | 0.00% |
| Date | 1 EUR in SEK | Daily change |
|---|---|---|
| 2026-09-11 | 11.2373 | +0.34% |
| 2026-09-10 | 11.1995 | +0.45% |
| 2026-09-09 | 11.1495 | -0.02% |
| 2026-09-08 | 11.152 | -0.09% |
| 2026-09-07 | 11.162 | +0.55% |
| 2026-09-06 | 11.1005 | 0.00% |
| 2026-09-05 | 11.1005 | 0.00% |
| 2026-09-04 | 11.1005 | -0.22% |
| 2026-09-03 | 11.1244 | -0.30% |
| 2026-09-02 | 11.1574 | +0.39% |
| 2026-09-01 | 11.1145 | +0.04% |
| 2026-08-31 | 11.11 | +0.19% |
| 2026-08-30 | 11.0884 | 0.00% |
| 2026-08-29 | 11.0884 | 0.00% |
| 2026-08-28 | 11.0884 | — |
EUR to SEK conversion table
1 EUR11.29 SEK
5 EUR56.45 SEK
10 EUR112.9 SEK
25 EUR282.25 SEK
50 EUR564.5 SEK
100 EUR1,129 SEK
500 EUR5,645 SEK
1,000 EUR11,290 SEK
5,000 EUR56,450 SEK
10,000 EUR112,900 SEK
Get the EUR/SEK rate in your app
One GET request returns the latest EUR → 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/EUR/SEK"fetch('https://rate-api.com/api/v1/pair/EUR/SEK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} SEK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/SEK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} SEK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/SEK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} SEK\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "SEK"
},
"rate": 11.29,
"timestamp": 1790450993,
"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 EURSwedish Krona → Euro0.088574Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.