Convert MNT to EUR
Mongolian Tugrik → Euro
1 MNT = 0.00024374 EUR(1 EUR = 4,102.7314 MNT)
Currency converter
1 MNT =
0.00024374 EUR
MNT to EUR: last 30 days
Over the last 30 days, 1 MNT traded between 0.00023853 and 0.00024436 EUR, averaging 0.00024068 EUR. The MNT/EUR rate is up 2.18% since 2026-08-28.
- 30-day high
- 0.00024436
- 2026-09-24
- 30-day low
- 0.00023853
- 2026-09-09
- 30-day average
- 0.00024068
- Days with data: 30
- 30-day change
- +2.18%
- since 2026-08-28
0.00024436
0.000238532026-08-28 → 2026-09-26
| Date | 1 MNT in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.00024374 | 0.00% |
| 2026-09-25 | 0.00024374 | -0.25% |
| 2026-09-24 | 0.00024436 | +0.32% |
| 2026-09-23 | 0.00024359 | +0.48% |
| 2026-09-22 | 0.00024243 | +0.28% |
| 2026-09-21 | 0.00024174 | -0.39% |
| 2026-09-20 | 0.00024268 | +0.07% |
| 2026-09-19 | 0.0002425 | +0.03% |
| 2026-09-18 | 0.00024243 | +0.13% |
| 2026-09-17 | 0.00024211 | +0.53% |
| 2026-09-16 | 0.00024084 | -0.05% |
| 2026-09-15 | 0.00024095 | +0.15% |
| 2026-09-14 | 0.00024059 | +0.31% |
| 2026-09-13 | 0.00023984 | +0.02% |
| 2026-09-12 | 0.00023978 | +0.02% |
| Date | 1 MNT in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.00023973 | +0.13% |
| 2026-09-10 | 0.00023942 | +0.37% |
| 2026-09-09 | 0.00023853 | -0.32% |
| 2026-09-08 | 0.0002393 | +0.09% |
| 2026-09-07 | 0.00023908 | -0.08% |
| 2026-09-06 | 0.00023926 | -0.05% |
| 2026-09-05 | 0.00023939 | +0.13% |
| 2026-09-04 | 0.00023907 | -0.15% |
| 2026-09-03 | 0.00023942 | -0.27% |
| 2026-09-02 | 0.00024007 | +0.11% |
| 2026-09-01 | 0.00023982 | +0.01% |
| 2026-08-31 | 0.00023979 | +0.38% |
| 2026-08-30 | 0.00023887 | +0.04% |
| 2026-08-29 | 0.00023878 | +0.10% |
| 2026-08-28 | 0.00023855 | — |
MNT to EUR conversion table
1 MNT0.00024374 EUR
5 MNT0.0012187 EUR
10 MNT0.0024374 EUR
25 MNT0.0060935 EUR
50 MNT0.012187 EUR
100 MNT0.024374 EUR
500 MNT0.12187 EUR
1,000 MNT0.24374 EUR
5,000 MNT1.2187 EUR
10,000 MNT2.4374 EUR
Get the MNT/EUR rate in your app
One GET request returns the latest MNT → EUR 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/MNT/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/MNT/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MNT = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MNT/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MNT = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MNT/EUR?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MNT = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "MNT",
"to": "EUR"
},
"rate": 0.000244,
"timestamp": 1790432122,
"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
EUR to MNTEuro → Mongolian Tugrik4,102.7314Convert MNT to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.