Convert RUB to IDR
Russian Ruble → Indonesian Rupiah
1 RUB = 210.71937 IDR(1 IDR = 0.00474565 RUB)
Currency converter
1 RUB =
210.7194 IDR
RUB to IDR: last 30 days
Over the last 30 days, 1 RUB traded between 202.1484 and 212.7551 IDR, averaging 207.8916 IDR. The RUB/IDR rate is up 1.66% since 2026-08-28.
- 30-day high
- 212.7551
- 2026-09-22
- 30-day low
- 202.1484
- 2026-09-03
- 30-day average
- 207.8916
- Days with data: 30
- 30-day change
- +1.66%
- since 2026-08-28
212.7551
202.14842026-08-28 → 2026-09-26
| Date | 1 RUB in IDR | Daily change |
|---|---|---|
| 2026-09-26 | 210.7194 | 0.00% |
| 2026-09-25 | 210.7194 | -0.31% |
| 2026-09-24 | 211.37 | +0.13% |
| 2026-09-23 | 211.097 | -0.78% |
| 2026-09-22 | 212.7551 | +0.21% |
| 2026-09-21 | 212.3094 | +0.16% |
| 2026-09-20 | 211.9641 | +0.37% |
| 2026-09-19 | 211.1808 | +0.12% |
| 2026-09-18 | 210.9241 | +0.22% |
| 2026-09-17 | 210.4618 | +0.29% |
| 2026-09-16 | 209.863 | +0.22% |
| 2026-09-15 | 209.4035 | +0.24% |
| 2026-09-14 | 208.91 | +0.03% |
| 2026-09-13 | 208.8522 | -0.11% |
| 2026-09-12 | 209.0841 | -0.27% |
| Date | 1 RUB in IDR | Daily change |
|---|---|---|
| 2026-09-11 | 209.6587 | +1.40% |
| 2026-09-10 | 206.7637 | +1.57% |
| 2026-09-09 | 203.5698 | -0.24% |
| 2026-09-08 | 204.0535 | +0.15% |
| 2026-09-07 | 203.7481 | +0.00% |
| 2026-09-06 | 203.746 | -0.85% |
| 2026-09-05 | 205.4922 | +0.97% |
| 2026-09-04 | 203.5114 | +0.67% |
| 2026-09-03 | 202.1484 | -0.92% |
| 2026-09-02 | 204.0316 | -0.75% |
| 2026-09-01 | 205.5739 | -0.21% |
| 2026-08-31 | 206.0011 | +0.02% |
| 2026-08-30 | 205.9655 | +0.19% |
| 2026-08-29 | 205.5824 | -0.82% |
| 2026-08-28 | 207.287 | — |
RUB to IDR conversion table
1 RUB210.7194 IDR
5 RUB1,053.5969 IDR
10 RUB2,107.1937 IDR
25 RUB5,267.9843 IDR
50 RUB10,535.969 IDR
100 RUB21,071.937 IDR
500 RUB105,359.69 IDR
1,000 RUB210,719.37 IDR
5,000 RUB1,053,596.9 IDR
10,000 RUB2,107,193.7 IDR
Get the RUB/IDR rate in your app
One GET request returns the latest RUB → IDR 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/IDR"fetch('https://rate-api.com/api/v1/pair/RUB/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/IDR');
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']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "IDR"
},
"rate": 210.7194,
"timestamp": 1790439651,
"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
IDR to RUBIndonesian Rupiah → Russian Ruble0.0047456Convert RUB to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.