Convert INR to MDL
Indian Rupee → Moldovan Leu
1 INR = 0.183555 MDL(1 MDL = 5.447966 INR)
Currency converter
1 INR =
0.18355 MDL
INR to MDL: last 30 days
Over the last 30 days, 1 INR traded between 0.17936 and 0.1837 MDL, averaging 0.18209 MDL. The INR/MDL rate is up 2.34% since 2026-08-28.
- 30-day high
- 0.1837
- 2026-09-23
- 30-day low
- 0.17936
- 2026-08-28
- 30-day average
- 0.18209
- Days with data: 30
- 30-day change
- +2.34%
- since 2026-08-28
0.1837
0.179362026-08-28 → 2026-09-26
| Date | 1 INR in MDL | Daily change |
|---|---|---|
| 2026-09-26 | 0.18355 | 0.00% |
| 2026-09-25 | 0.18355 | +0.14% |
| 2026-09-24 | 0.18329 | -0.22% |
| 2026-09-23 | 0.1837 | +0.01% |
| 2026-09-22 | 0.18368 | +0.27% |
| 2026-09-21 | 0.18318 | +0.27% |
| 2026-09-20 | 0.18269 | -0.28% |
| 2026-09-19 | 0.18321 | +0.08% |
| 2026-09-18 | 0.18307 | +0.17% |
| 2026-09-17 | 0.18276 | +0.90% |
| 2026-09-16 | 0.18113 | -0.05% |
| 2026-09-15 | 0.18123 | -0.05% |
| 2026-09-14 | 0.18133 | +0.53% |
| 2026-09-13 | 0.18038 | -0.39% |
| 2026-09-12 | 0.18109 | +0.08% |
| Date | 1 INR in MDL | Daily change |
|---|---|---|
| 2026-09-11 | 0.18094 | +0.02% |
| 2026-09-10 | 0.18091 | -0.08% |
| 2026-09-09 | 0.18106 | -0.46% |
| 2026-09-08 | 0.1819 | -0.23% |
| 2026-09-07 | 0.18232 | -0.13% |
| 2026-09-06 | 0.18256 | +0.18% |
| 2026-09-05 | 0.18224 | -0.29% |
| 2026-09-04 | 0.18277 | -0.22% |
| 2026-09-03 | 0.18317 | +0.51% |
| 2026-09-02 | 0.18223 | +1.00% |
| 2026-09-01 | 0.18044 | -1.15% |
| 2026-08-31 | 0.18253 | +0.76% |
| 2026-08-30 | 0.18116 | -0.06% |
| 2026-08-29 | 0.18126 | +1.06% |
| 2026-08-28 | 0.17936 | — |
INR to MDL conversion table
1 INR0.18355 MDL
5 INR0.91777 MDL
10 INR1.8355 MDL
25 INR4.5889 MDL
50 INR9.1777 MDL
100 INR18.3555 MDL
500 INR91.7774 MDL
1,000 INR183.5548 MDL
5,000 INR917.7737 MDL
10,000 INR1,835.5475 MDL
Get the INR/MDL rate in your app
One GET request returns the latest INR → MDL 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/MDL"fetch('https://rate-api.com/api/v1/pair/INR/MDL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} MDL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/MDL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} MDL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/MDL');
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']} MDL\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "MDL"
},
"rate": 0.1836,
"timestamp": 1790429401,
"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
MDL to INRMoldovan Leu → Indian Rupee5.448Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.