Convert INR to MYR
Indian Rupee → Malaysian Ringgit
1 INR = 0.0425186 MYR(1 MYR = 23.519136 INR)
Currency converter
1 INR =
0.042519 MYR
INR to MYR: last 30 days
Over the last 30 days, 1 INR traded between 0.042206 and 0.042829 MYR, averaging 0.042591 MYR. The INR/MYR rate is up 0.74% since 2026-08-28.
- 30-day high
- 0.042829
- 2026-09-08
- 30-day low
- 0.042206
- 2026-08-28
- 30-day average
- 0.042591
- Days with data: 30
- 30-day change
- +0.74%
- since 2026-08-28
0.042829
0.0422062026-08-28 → 2026-09-26
| Date | 1 INR in MYR | Daily change |
|---|---|---|
| 2026-09-26 | 0.042519 | 0.00% |
| 2026-09-25 | 0.042519 | -0.17% |
| 2026-09-24 | 0.042591 | -0.06% |
| 2026-09-23 | 0.042615 | -0.01% |
| 2026-09-22 | 0.04262 | +0.15% |
| 2026-09-21 | 0.042554 | -0.01% |
| 2026-09-20 | 0.042558 | 0.00% |
| 2026-09-19 | 0.042558 | 0.00% |
| 2026-09-18 | 0.042558 | -0.39% |
| 2026-09-17 | 0.042725 | +0.31% |
| 2026-09-16 | 0.042591 | 0.00% |
| 2026-09-15 | 0.042591 | -0.15% |
| 2026-09-14 | 0.042654 | +0.14% |
| 2026-09-13 | 0.042596 | 0.00% |
| 2026-09-12 | 0.042596 | 0.00% |
| Date | 1 INR in MYR | Daily change |
|---|---|---|
| 2026-09-11 | 0.042596 | -0.00% |
| 2026-09-10 | 0.042597 | -0.46% |
| 2026-09-09 | 0.042793 | -0.09% |
| 2026-09-08 | 0.042829 | +0.02% |
| 2026-09-07 | 0.042819 | +0.04% |
| 2026-09-06 | 0.042803 | 0.00% |
| 2026-09-05 | 0.042803 | 0.00% |
| 2026-09-04 | 0.042803 | +0.07% |
| 2026-09-03 | 0.042772 | +0.41% |
| 2026-09-02 | 0.042598 | +0.13% |
| 2026-09-01 | 0.042543 | +0.57% |
| 2026-08-31 | 0.042303 | +0.23% |
| 2026-08-30 | 0.042206 | 0.00% |
| 2026-08-29 | 0.042206 | 0.00% |
| 2026-08-28 | 0.042206 | — |
INR to MYR conversion table
1 INR0.042519 MYR
5 INR0.21259 MYR
10 INR0.42519 MYR
25 INR1.063 MYR
50 INR2.1259 MYR
100 INR4.2519 MYR
500 INR21.2593 MYR
1,000 INR42.5186 MYR
5,000 INR212.5928 MYR
10,000 INR425.1857 MYR
Get the INR/MYR rate in your app
One GET request returns the latest INR → MYR 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/MYR"fetch('https://rate-api.com/api/v1/pair/INR/MYR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} MYR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/MYR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} MYR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/MYR');
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']} MYR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "MYR"
},
"rate": 0.0425,
"timestamp": 1790429451,
"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
MYR to INRMalaysian Ringgit → Indian Rupee23.5191Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.