Convert RUB to SEK
Russian Ruble → Swedish Krona
1 RUB = 0.116463 SEK(1 SEK = 8.586395 RUB)
Currency converter
1 RUB =
0.11646 SEK
RUB to SEK: last 30 days
Over the last 30 days, 1 RUB traded between 0.10971 and 0.11718 SEK, averaging 0.11385 SEK. The RUB/SEK rate is up 4.52% since 2026-08-28.
- 30-day high
- 0.11718
- 2026-09-23
- 30-day low
- 0.10971
- 2026-09-03
- 30-day average
- 0.11385
- Days with data: 30
- 30-day change
- +4.52%
- since 2026-08-28
0.11718
0.109712026-08-28 → 2026-09-26
| Date | 1 RUB in SEK | Daily change |
|---|---|---|
| 2026-09-26 | 0.11646 | 0.00% |
| 2026-09-25 | 0.11646 | -0.29% |
| 2026-09-24 | 0.11681 | -0.32% |
| 2026-09-23 | 0.11718 | +0.04% |
| 2026-09-22 | 0.11713 | +0.47% |
| 2026-09-21 | 0.11659 | -0.50% |
| 2026-09-20 | 0.11718 | +0.37% |
| 2026-09-19 | 0.11675 | +0.12% |
| 2026-09-18 | 0.1166 | +0.04% |
| 2026-09-17 | 0.11656 | +0.31% |
| 2026-09-16 | 0.1162 | +0.51% |
| 2026-09-15 | 0.11561 | +0.07% |
| 2026-09-14 | 0.11553 | +0.45% |
| 2026-09-13 | 0.11502 | -0.11% |
| 2026-09-12 | 0.11514 | -0.27% |
| Date | 1 RUB in SEK | Daily change |
|---|---|---|
| 2026-09-11 | 0.11546 | +1.79% |
| 2026-09-10 | 0.11343 | +1.77% |
| 2026-09-09 | 0.11146 | +0.10% |
| 2026-09-08 | 0.11135 | +0.41% |
| 2026-09-07 | 0.11089 | +0.49% |
| 2026-09-06 | 0.11034 | -0.85% |
| 2026-09-05 | 0.11129 | +0.97% |
| 2026-09-04 | 0.11022 | +0.46% |
| 2026-09-03 | 0.10971 | -1.15% |
| 2026-09-02 | 0.11099 | -0.09% |
| 2026-09-01 | 0.1111 | -0.31% |
| 2026-08-31 | 0.11144 | +0.66% |
| 2026-08-30 | 0.11072 | +0.19% |
| 2026-08-29 | 0.11051 | -0.82% |
| 2026-08-28 | 0.11143 | — |
RUB to SEK conversion table
1 RUB0.11646 SEK
5 RUB0.58232 SEK
10 RUB1.1646 SEK
25 RUB2.9116 SEK
50 RUB5.8232 SEK
100 RUB11.6463 SEK
500 RUB58.2317 SEK
1,000 RUB116.4633 SEK
5,000 RUB582.3166 SEK
10,000 RUB1,164.6331 SEK
Get the RUB/SEK rate in your app
One GET request returns the latest RUB → 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/RUB/SEK"fetch('https://rate-api.com/api/v1/pair/RUB/SEK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} SEK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/SEK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} SEK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/SEK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} SEK\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "SEK"
},
"rate": 0.1165,
"timestamp": 1790429332,
"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 RUBSwedish Krona → Russian Ruble8.5864Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.