Convert INR to SEK
Indian Rupee → Swedish Krona
1 INR = 0.103331 SEK(1 SEK = 9.677635 INR)
Currency converter
1 INR =
0.10333 SEK
INR to SEK: last 30 days
Over the last 30 days, 1 INR traded between 0.09984 and 0.10333 SEK, averaging 0.10181 SEK. The INR/SEK rate is up 3.50% since 2026-08-29.
- 30-day high
- 0.10333
- 2026-09-25
- 30-day low
- 0.09984
- 2026-08-29
- 30-day average
- 0.10181
- Days with data: 30
- 30-day change
- +3.50%
- since 2026-08-29
0.10333
0.099842026-08-29 → 2026-09-27
| Date | 1 INR in SEK | Daily change |
|---|---|---|
| 2026-09-27 | 0.10333 | 0.00% |
| 2026-09-26 | 0.10333 | 0.00% |
| 2026-09-25 | 0.10333 | +0.06% |
| 2026-09-24 | 0.10327 | +0.09% |
| 2026-09-23 | 0.10318 | +0.53% |
| 2026-09-22 | 0.10264 | +0.22% |
| 2026-09-21 | 0.10241 | -0.34% |
| 2026-09-20 | 0.10276 | 0.00% |
| 2026-09-19 | 0.10276 | 0.00% |
| 2026-09-18 | 0.10276 | +0.42% |
| 2026-09-17 | 0.10233 | +0.37% |
| 2026-09-16 | 0.10196 | +0.14% |
| 2026-09-15 | 0.10182 | -0.38% |
| 2026-09-14 | 0.1022 | +0.75% |
| 2026-09-13 | 0.10144 | 0.00% |
| Date | 1 INR in SEK | Daily change |
|---|---|---|
| 2026-09-12 | 0.10144 | 0.00% |
| 2026-09-11 | 0.10144 | +0.42% |
| 2026-09-10 | 0.10102 | +0.41% |
| 2026-09-09 | 0.10061 | -0.64% |
| 2026-09-08 | 0.10126 | -0.38% |
| 2026-09-07 | 0.10164 | +0.55% |
| 2026-09-06 | 0.10108 | 0.00% |
| 2026-09-05 | 0.10108 | 0.00% |
| 2026-09-04 | 0.10108 | -0.28% |
| 2026-09-03 | 0.10136 | -0.11% |
| 2026-09-02 | 0.10147 | +0.47% |
| 2026-09-01 | 0.101 | +0.32% |
| 2026-08-31 | 0.10067 | +0.83% |
| 2026-08-30 | 0.09984 | 0.00% |
| 2026-08-29 | 0.09984 | — |
INR to SEK conversion table
1 INR0.10333 SEK
5 INR0.51666 SEK
10 INR1.0333 SEK
25 INR2.5833 SEK
50 INR5.1666 SEK
100 INR10.3331 SEK
500 INR51.6655 SEK
1,000 INR103.331 SEK
5,000 INR516.6552 SEK
10,000 INR1,033.3103 SEK
Get the INR/SEK rate in your app
One GET request returns the latest INR → 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/INR/SEK"fetch('https://rate-api.com/api/v1/pair/INR/SEK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} SEK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/SEK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} SEK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/SEK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} SEK\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "SEK"
},
"rate": 0.1033,
"timestamp": 1790470843,
"date": "2026-09-27"
}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 INRSwedish Krona → Indian Rupee9.6776Convert INR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.