Convert INR to RSD
Indian Rupee → Serbian Dinar
1 INR = 1.075341 RSD(1 RSD = 0.929938 INR)
Currency converter
1 INR =
1.0753 RSD
INR to RSD: last 30 days
Over the last 30 days, 1 INR traded between 1.0564 and 1.0782 RSD, averaging 1.066 RSD. The INR/RSD rate is up 1.34% since 2026-08-29.
- 30-day high
- 1.0782
- 2026-09-25
- 30-day low
- 1.0564
- 2026-09-10
- 30-day average
- 1.066
- Days with data: 30
- 30-day change
- +1.34%
- since 2026-08-29
1.0782
1.05642026-08-29 → 2026-09-27
| Date | 1 INR in RSD | Daily change |
|---|---|---|
| 2026-09-27 | 1.0753 | 0.00% |
| 2026-09-26 | 1.0753 | -0.26% |
| 2026-09-25 | 1.0782 | +0.25% |
| 2026-09-24 | 1.0755 | +0.25% |
| 2026-09-23 | 1.0728 | +0.25% |
| 2026-09-22 | 1.0701 | +0.28% |
| 2026-09-21 | 1.0671 | +0.00% |
| 2026-09-20 | 1.0671 | +0.01% |
| 2026-09-19 | 1.067 | +0.14% |
| 2026-09-18 | 1.0654 | -0.03% |
| 2026-09-17 | 1.0658 | +0.59% |
| 2026-09-16 | 1.0596 | -0.04% |
| 2026-09-15 | 1.06 | +0.05% |
| 2026-09-14 | 1.0595 | +0.07% |
| 2026-09-13 | 1.0587 | +0.01% |
| Date | 1 INR in RSD | Daily change |
|---|---|---|
| 2026-09-12 | 1.0586 | +0.02% |
| 2026-09-11 | 1.0584 | +0.19% |
| 2026-09-10 | 1.0564 | -0.40% |
| 2026-09-09 | 1.0607 | -0.35% |
| 2026-09-08 | 1.0645 | -0.45% |
| 2026-09-07 | 1.0693 | +0.01% |
| 2026-09-06 | 1.0692 | +0.00% |
| 2026-09-05 | 1.0692 | +0.11% |
| 2026-09-04 | 1.0681 | -0.22% |
| 2026-09-03 | 1.0704 | +0.34% |
| 2026-09-02 | 1.0668 | +0.15% |
| 2026-09-01 | 1.0652 | +0.12% |
| 2026-08-31 | 1.0639 | +0.22% |
| 2026-08-30 | 1.0615 | +0.04% |
| 2026-08-29 | 1.0611 | — |
INR to RSD conversion table
1 INR1.0753 RSD
5 INR5.3767 RSD
10 INR10.7534 RSD
25 INR26.8835 RSD
50 INR53.767 RSD
100 INR107.5341 RSD
500 INR537.6703 RSD
1,000 INR1,075.3407 RSD
5,000 INR5,376.7034 RSD
10,000 INR10,753.407 RSD
Get the INR/RSD rate in your app
One GET request returns the latest INR → RSD 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/RSD"fetch('https://rate-api.com/api/v1/pair/INR/RSD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} RSD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/RSD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} RSD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/RSD');
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']} RSD\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "RSD"
},
"rate": 1.0753,
"timestamp": 1790490110,
"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
RSD to INRSerbian Dinar → Indian Rupee0.92994Convert INR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.