Convert INR to RUB
Indian Rupee → Russian Ruble
1 INR = 0.887241 RUB(1 RUB = 1.127089 INR)
Currency converter
1 INR =
0.88724 RUB
INR to RUB: last 30 days
Over the last 30 days, 1 INR traded between 0.87622 and 0.92388 RUB, averaging 0.89356 RUB. The INR/RUB rate is down 0.98% since 2026-08-28.
- 30-day high
- 0.92388
- 2026-09-03
- 30-day low
- 0.87622
- 2026-09-22
- 30-day average
- 0.89356
- Days with data: 30
- 30-day change
- -0.98%
- since 2026-08-28
0.92388
0.876222026-08-28 → 2026-09-26
| Date | 1 INR in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 0.88724 | 0.00% |
| 2026-09-25 | 0.88724 | +0.35% |
| 2026-09-24 | 0.88412 | +0.41% |
| 2026-09-23 | 0.88047 | +0.49% |
| 2026-09-22 | 0.87622 | -0.24% |
| 2026-09-21 | 0.87836 | +0.16% |
| 2026-09-20 | 0.87698 | -0.37% |
| 2026-09-19 | 0.88023 | -0.12% |
| 2026-09-18 | 0.88131 | +0.38% |
| 2026-09-17 | 0.87793 | +0.06% |
| 2026-09-16 | 0.87743 | -0.37% |
| 2026-09-15 | 0.88069 | -0.44% |
| 2026-09-14 | 0.88462 | +0.30% |
| 2026-09-13 | 0.88201 | +0.11% |
| 2026-09-12 | 0.88103 | +0.27% |
| Date | 1 INR in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 0.87861 | -1.34% |
| 2026-09-10 | 0.89057 | -1.33% |
| 2026-09-09 | 0.90261 | -0.74% |
| 2026-09-08 | 0.90939 | -0.79% |
| 2026-09-07 | 0.91662 | +0.06% |
| 2026-09-06 | 0.91606 | +0.86% |
| 2026-09-05 | 0.90828 | -0.96% |
| 2026-09-04 | 0.91712 | -0.73% |
| 2026-09-03 | 0.92388 | +1.05% |
| 2026-09-02 | 0.91423 | +0.56% |
| 2026-09-01 | 0.9091 | +0.64% |
| 2026-08-31 | 0.90334 | +0.17% |
| 2026-08-30 | 0.90176 | -0.19% |
| 2026-08-29 | 0.90344 | +0.83% |
| 2026-08-28 | 0.89602 | — |
INR to RUB conversion table
1 INR0.88724 RUB
5 INR4.4362 RUB
10 INR8.8724 RUB
25 INR22.181 RUB
50 INR44.3621 RUB
100 INR88.7241 RUB
500 INR443.6205 RUB
1,000 INR887.241 RUB
5,000 INR4,436.2052 RUB
10,000 INR8,872.4103 RUB
Get the INR/RUB rate in your app
One GET request returns the latest INR → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/INR/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "RUB"
},
"rate": 0.8872,
"timestamp": 1790429382,
"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
RUB to INRRussian Ruble → Indian Rupee1.1271Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.