Convert INR to MXN
Indian Rupee → Mexican Peso
1 INR = 0.184711 MXN(1 MXN = 5.413867 INR)
Currency converter
1 INR =
0.18471 MXN
INR to MXN: last 30 days
Over the last 30 days, 1 INR traded between 0.17753 and 0.18471 MXN, averaging 0.17956 MXN. The INR/MXN rate is up 3.96% since 2026-08-29.
- 30-day high
- 0.18471
- 2026-09-25
- 30-day low
- 0.17753
- 2026-09-10
- 30-day average
- 0.17956
- Days with data: 30
- 30-day change
- +3.96%
- since 2026-08-29
0.18471
0.177532026-08-29 → 2026-09-27
| Date | 1 INR in MXN | Daily change |
|---|---|---|
| 2026-09-27 | 0.18471 | 0.00% |
| 2026-09-26 | 0.18471 | 0.00% |
| 2026-09-25 | 0.18471 | +0.80% |
| 2026-09-24 | 0.18324 | +0.60% |
| 2026-09-23 | 0.18215 | +0.94% |
| 2026-09-22 | 0.18045 | +0.58% |
| 2026-09-21 | 0.17942 | +0.14% |
| 2026-09-20 | 0.17916 | 0.00% |
| 2026-09-19 | 0.17916 | 0.00% |
| 2026-09-18 | 0.17916 | +0.00% |
| 2026-09-17 | 0.17915 | +0.31% |
| 2026-09-16 | 0.1786 | -0.11% |
| 2026-09-15 | 0.17879 | +0.08% |
| 2026-09-14 | 0.17865 | +0.56% |
| 2026-09-13 | 0.17766 | 0.00% |
| Date | 1 INR in MXN | Daily change |
|---|---|---|
| 2026-09-12 | 0.17766 | 0.00% |
| 2026-09-11 | 0.17766 | +0.07% |
| 2026-09-10 | 0.17753 | -0.10% |
| 2026-09-09 | 0.17772 | -0.58% |
| 2026-09-08 | 0.17875 | -0.13% |
| 2026-09-07 | 0.17898 | +0.08% |
| 2026-09-06 | 0.17885 | 0.00% |
| 2026-09-05 | 0.17885 | 0.00% |
| 2026-09-04 | 0.17885 | -0.66% |
| 2026-09-03 | 0.18004 | +0.57% |
| 2026-09-02 | 0.17901 | -0.02% |
| 2026-09-01 | 0.17905 | +0.19% |
| 2026-08-31 | 0.17871 | +0.59% |
| 2026-08-30 | 0.17767 | 0.00% |
| 2026-08-29 | 0.17767 | — |
INR to MXN conversion table
1 INR0.18471 MXN
5 INR0.92355 MXN
10 INR1.8471 MXN
25 INR4.6178 MXN
50 INR9.2355 MXN
100 INR18.4711 MXN
500 INR92.3554 MXN
1,000 INR184.7109 MXN
5,000 INR923.5543 MXN
10,000 INR1,847.1085 MXN
Get the INR/MXN rate in your app
One GET request returns the latest INR → MXN 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/MXN"fetch('https://rate-api.com/api/v1/pair/INR/MXN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} MXN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/MXN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} MXN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/MXN');
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']} MXN\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "MXN"
},
"rate": 0.1847,
"timestamp": 1790470845,
"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
MXN to INRMexican Peso → Indian Rupee5.4139Convert INR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.