Convert EUR to MXN
Euro → Mexican Peso
1 EUR = 20.1816 MXN(1 MXN = 0.0495501 EUR)
Currency converter
1 EUR =
20.1816 MXN
EUR to MXN: last 30 days
Over the last 30 days, 1 EUR traded between 19.6401 and 20.1816 MXN, averaging 19.7534 MXN. The EUR/MXN rate is up 2.28% since 2026-08-28.
- 30-day high
- 20.1816
- 2026-09-25
- 30-day low
- 19.6401
- 2026-09-04
- 30-day average
- 19.7534
- Days with data: 30
- 30-day change
- +2.28%
- since 2026-08-28
20.1816
19.64012026-08-28 → 2026-09-26
| Date | 1 EUR in MXN | Daily change |
|---|---|---|
| 2026-09-26 | 20.1816 | 0.00% |
| 2026-09-25 | 20.1816 | +0.97% |
| 2026-09-24 | 19.9878 | +0.44% |
| 2026-09-23 | 19.8999 | +0.64% |
| 2026-09-22 | 19.7727 | +0.10% |
| 2026-09-21 | 19.7533 | +0.34% |
| 2026-09-20 | 19.6855 | 0.00% |
| 2026-09-19 | 19.6855 | 0.00% |
| 2026-09-18 | 19.6855 | -0.24% |
| 2026-09-17 | 19.7338 | -0.19% |
| 2026-09-16 | 19.7723 | -0.13% |
| 2026-09-15 | 19.7971 | +0.39% |
| 2026-09-14 | 19.7199 | +0.20% |
| 2026-09-13 | 19.6799 | 0.00% |
| 2026-09-12 | 19.6799 | 0.00% |
| Date | 1 EUR in MXN | Daily change |
|---|---|---|
| 2026-09-11 | 19.6799 | -0.01% |
| 2026-09-10 | 19.6816 | -0.07% |
| 2026-09-09 | 19.6948 | +0.04% |
| 2026-09-08 | 19.6869 | +0.16% |
| 2026-09-07 | 19.6552 | +0.08% |
| 2026-09-06 | 19.6401 | 0.00% |
| 2026-09-05 | 19.6401 | 0.00% |
| 2026-09-04 | 19.6401 | -0.60% |
| 2026-09-03 | 19.7592 | +0.38% |
| 2026-09-02 | 19.6835 | -0.10% |
| 2026-09-01 | 19.7041 | -0.09% |
| 2026-08-31 | 19.7227 | -0.05% |
| 2026-08-30 | 19.7326 | 0.00% |
| 2026-08-29 | 19.7326 | 0.00% |
| 2026-08-28 | 19.7326 | — |
EUR to MXN conversion table
1 EUR20.1816 MXN
5 EUR100.908 MXN
10 EUR201.816 MXN
25 EUR504.54 MXN
50 EUR1,009.08 MXN
100 EUR2,018.16 MXN
500 EUR10,090.8 MXN
1,000 EUR20,181.6 MXN
5,000 EUR100,908 MXN
10,000 EUR201,816 MXN
Get the EUR/MXN rate in your app
One GET request returns the latest EUR → 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/EUR/MXN"fetch('https://rate-api.com/api/v1/pair/EUR/MXN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} MXN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/MXN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} MXN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/MXN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} MXN\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "MXN"
},
"rate": 20.1816,
"timestamp": 1790429406,
"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
MXN to EURMexican Peso → Euro0.04955Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.