Convert MXN to INR
Mexican Peso → Indian Rupee
1 MXN = 5.413867 INR(1 INR = 0.184711 MXN)
Currency converter
1 MXN =
5.4139 INR
MXN to INR: last 30 days
Over the last 30 days, 1 MXN traded between 5.4139 and 5.6328 INR, averaging 5.5772 INR. The MXN/INR rate is down 3.81% since 2026-08-28.
- 30-day high
- 5.6328
- 2026-09-10
- 30-day low
- 5.4139
- 2026-09-25
- 30-day average
- 5.5772
- Days with data: 30
- 30-day change
- -3.81%
- since 2026-08-28
5.6328
5.41392026-08-28 → 2026-09-26
| Date | 1 MXN in INR | Daily change |
|---|---|---|
| 2026-09-26 | 5.4139 | 0.00% |
| 2026-09-25 | 5.4139 | -0.79% |
| 2026-09-24 | 5.4572 | -0.60% |
| 2026-09-23 | 5.49 | -0.93% |
| 2026-09-22 | 5.5417 | -0.57% |
| 2026-09-21 | 5.5736 | -0.14% |
| 2026-09-20 | 5.5817 | 0.00% |
| 2026-09-19 | 5.5817 | 0.00% |
| 2026-09-18 | 5.5817 | -0.00% |
| 2026-09-17 | 5.5818 | -0.31% |
| 2026-09-16 | 5.5992 | +0.11% |
| 2026-09-15 | 5.5931 | -0.08% |
| 2026-09-14 | 5.5974 | -0.56% |
| 2026-09-13 | 5.6288 | 0.00% |
| 2026-09-12 | 5.6288 | 0.00% |
| Date | 1 MXN in INR | Daily change |
|---|---|---|
| 2026-09-11 | 5.6288 | -0.07% |
| 2026-09-10 | 5.6328 | +0.10% |
| 2026-09-09 | 5.627 | +0.58% |
| 2026-09-08 | 5.5944 | +0.13% |
| 2026-09-07 | 5.5871 | -0.08% |
| 2026-09-06 | 5.5914 | 0.00% |
| 2026-09-05 | 5.5914 | 0.00% |
| 2026-09-04 | 5.5914 | +0.67% |
| 2026-09-03 | 5.5543 | -0.57% |
| 2026-09-02 | 5.5862 | +0.02% |
| 2026-09-01 | 5.585 | -0.19% |
| 2026-08-31 | 5.5955 | -0.58% |
| 2026-08-30 | 5.6284 | 0.00% |
| 2026-08-29 | 5.6284 | 0.00% |
| 2026-08-28 | 5.6284 | — |
MXN to INR conversion table
1 MXN5.4139 INR
5 MXN27.0693 INR
10 MXN54.1387 INR
25 MXN135.3467 INR
50 MXN270.6934 INR
100 MXN541.3867 INR
500 MXN2,706.9335 INR
1,000 MXN5,413.8671 INR
5,000 MXN27,069.335 INR
10,000 MXN54,138.671 INR
Get the MXN/INR rate in your app
One GET request returns the latest MXN → INR 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/MXN/INR"fetch('https://rate-api.com/api/v1/pair/MXN/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MXN = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MXN/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MXN = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MXN/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MXN = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "MXN",
"to": "INR"
},
"rate": 5.4139,
"timestamp": 1790435067,
"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
INR to MXNIndian Rupee → Mexican Peso0.18471Convert MXN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.