Convert INR to IDR
Indian Rupee → Indonesian Rupiah
1 INR = 186.95887 IDR(1 IDR = 0.00534877 INR)
Currency converter
1 INR =
186.9589 IDR
INR to IDR: last 30 days
Over the last 30 days, 1 INR traded between 183.7451 and 186.9589 IDR, averaging 185.7609 IDR. The INR/IDR rate is up 0.66% since 2026-08-29.
- 30-day high
- 186.9589
- 2026-09-25
- 30-day low
- 183.7451
- 2026-09-09
- 30-day average
- 185.7609
- Days with data: 30
- 30-day change
- +0.66%
- since 2026-08-29
186.9589
183.74512026-08-29 → 2026-09-27
| Date | 1 INR in IDR | Daily change |
|---|---|---|
| 2026-09-27 | 186.9589 | 0.00% |
| 2026-09-26 | 186.9589 | 0.00% |
| 2026-09-25 | 186.9589 | +0.04% |
| 2026-09-24 | 186.8772 | +0.54% |
| 2026-09-23 | 185.8656 | -0.30% |
| 2026-09-22 | 186.4212 | -0.03% |
| 2026-09-21 | 186.4851 | +0.32% |
| 2026-09-20 | 185.8886 | 0.00% |
| 2026-09-19 | 185.8886 | 0.00% |
| 2026-09-18 | 185.8886 | +0.60% |
| 2026-09-17 | 184.7717 | +0.34% |
| 2026-09-16 | 184.1392 | -0.15% |
| 2026-09-15 | 184.4206 | -0.21% |
| 2026-09-14 | 184.8054 | +0.32% |
| 2026-09-13 | 184.2089 | 0.00% |
| Date | 1 INR in IDR | Daily change |
|---|---|---|
| 2026-09-12 | 184.2089 | 0.00% |
| 2026-09-11 | 184.2089 | +0.04% |
| 2026-09-10 | 184.1366 | +0.21% |
| 2026-09-09 | 183.7451 | -0.98% |
| 2026-09-08 | 185.5636 | -0.64% |
| 2026-09-07 | 186.7605 | +0.06% |
| 2026-09-06 | 186.6441 | 0.00% |
| 2026-09-05 | 186.6441 | 0.00% |
| 2026-09-04 | 186.6441 | -0.06% |
| 2026-09-03 | 186.7605 | +0.12% |
| 2026-09-02 | 186.5326 | -0.19% |
| 2026-09-01 | 186.8878 | +0.43% |
| 2026-08-31 | 186.0881 | +0.19% |
| 2026-08-30 | 185.7323 | 0.00% |
| 2026-08-29 | 185.7323 | — |
INR to IDR conversion table
1 INR186.9589 IDR
5 INR934.7944 IDR
10 INR1,869.5887 IDR
25 INR4,673.9718 IDR
50 INR9,347.9437 IDR
100 INR18,695.887 IDR
500 INR93,479.437 IDR
1,000 INR186,958.87 IDR
5,000 INR934,794.37 IDR
10,000 INR1,869,588.7 IDR
Get the INR/IDR rate in your app
One GET request returns the latest INR → 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/INR/IDR"fetch('https://rate-api.com/api/v1/pair/INR/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/IDR');
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']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "IDR"
},
"rate": 186.9589,
"timestamp": 1790470866,
"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
IDR to INRIndonesian Rupiah → Indian Rupee0.0053488Convert INR to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.