Convert RUB to INR
Russian Ruble → Indian Rupee
1 RUB = 1.127089 INR(1 INR = 0.887241 RUB)
Currency converter
1 RUB =
1.1271 INR
RUB to INR: last 30 days
Over the last 30 days, 1 RUB traded between 1.0824 and 1.1413 INR, averaging 1.1194 INR. The RUB/INR rate is up 0.99% since 2026-08-28.
- 30-day high
- 1.1413
- 2026-09-22
- 30-day low
- 1.0824
- 2026-09-03
- 30-day average
- 1.1194
- Days with data: 30
- 30-day change
- +0.99%
- since 2026-08-28
1.1413
1.08242026-08-28 → 2026-09-26
| Date | 1 RUB in INR | Daily change |
|---|---|---|
| 2026-09-26 | 1.1271 | 0.00% |
| 2026-09-25 | 1.1271 | -0.35% |
| 2026-09-24 | 1.1311 | -0.41% |
| 2026-09-23 | 1.1358 | -0.48% |
| 2026-09-22 | 1.1413 | +0.24% |
| 2026-09-21 | 1.1385 | -0.16% |
| 2026-09-20 | 1.1403 | +0.37% |
| 2026-09-19 | 1.1361 | +0.12% |
| 2026-09-18 | 1.1347 | -0.38% |
| 2026-09-17 | 1.139 | -0.06% |
| 2026-09-16 | 1.1397 | +0.37% |
| 2026-09-15 | 1.1355 | +0.45% |
| 2026-09-14 | 1.1304 | -0.30% |
| 2026-09-13 | 1.1338 | -0.11% |
| 2026-09-12 | 1.135 | -0.27% |
| Date | 1 RUB in INR | Daily change |
|---|---|---|
| 2026-09-11 | 1.1382 | +1.36% |
| 2026-09-10 | 1.1229 | +1.35% |
| 2026-09-09 | 1.1079 | +0.75% |
| 2026-09-08 | 1.0996 | +0.80% |
| 2026-09-07 | 1.091 | -0.06% |
| 2026-09-06 | 1.0916 | -0.85% |
| 2026-09-05 | 1.101 | +0.97% |
| 2026-09-04 | 1.0904 | +0.74% |
| 2026-09-03 | 1.0824 | -1.04% |
| 2026-09-02 | 1.0938 | -0.56% |
| 2026-09-01 | 1.1 | -0.63% |
| 2026-08-31 | 1.107 | -0.17% |
| 2026-08-30 | 1.1089 | +0.19% |
| 2026-08-29 | 1.1069 | -0.82% |
| 2026-08-28 | 1.1161 | — |
RUB to INR conversion table
1 RUB1.1271 INR
5 RUB5.6354 INR
10 RUB11.2709 INR
25 RUB28.1772 INR
50 RUB56.3545 INR
100 RUB112.7089 INR
500 RUB563.5447 INR
1,000 RUB1,127.0894 INR
5,000 RUB5,635.4472 INR
10,000 RUB11,270.894 INR
Get the RUB/INR rate in your app
One GET request returns the latest RUB → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/RUB/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "INR"
},
"rate": 1.1271,
"timestamp": 1790429370,
"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
INR to RUBIndian Rupee → Russian Ruble0.88724Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.