Convert EUR to MDL
Euro → Moldovan Leu
1 EUR = 20.055284 MDL(1 MDL = 0.0498622 EUR)
Currency converter
1 EUR =
20.0553 MDL
EUR to MDL: last 30 days
Over the last 30 days, 1 EUR traded between 19.8568 and 20.1676 MDL, averaging 20.0587 MDL. The EUR/MDL rate is up 0.68% since 2026-08-28.
- 30-day high
- 20.1676
- 2026-09-21
- 30-day low
- 19.8568
- 2026-09-01
- 30-day average
- 20.0587
- Days with data: 30
- 30-day change
- +0.68%
- since 2026-08-28
20.1676
19.85682026-08-28 → 2026-09-26
| Date | 1 EUR in MDL | Daily change |
|---|---|---|
| 2026-09-26 | 20.0553 | 0.00% |
| 2026-09-25 | 20.0553 | +0.31% |
| 2026-09-24 | 19.9927 | -0.38% |
| 2026-09-23 | 20.0687 | -0.29% |
| 2026-09-22 | 20.127 | -0.20% |
| 2026-09-21 | 20.1676 | +0.47% |
| 2026-09-20 | 20.0741 | -0.28% |
| 2026-09-19 | 20.1313 | +0.08% |
| 2026-09-18 | 20.1159 | -0.07% |
| 2026-09-17 | 20.1309 | +0.39% |
| 2026-09-16 | 20.0528 | -0.07% |
| 2026-09-15 | 20.0672 | +0.26% |
| 2026-09-14 | 20.0151 | +0.17% |
| 2026-09-13 | 19.9811 | -0.39% |
| 2026-09-12 | 20.0595 | +0.08% |
| Date | 1 EUR in MDL | Daily change |
|---|---|---|
| 2026-09-11 | 20.0437 | -0.06% |
| 2026-09-10 | 20.0559 | -0.05% |
| 2026-09-09 | 20.0651 | +0.16% |
| 2026-09-08 | 20.0334 | +0.06% |
| 2026-09-07 | 20.0221 | -0.13% |
| 2026-09-06 | 20.0485 | +0.18% |
| 2026-09-05 | 20.0133 | -0.29% |
| 2026-09-04 | 20.0715 | -0.15% |
| 2026-09-03 | 20.1026 | +0.32% |
| 2026-09-02 | 20.0377 | +0.91% |
| 2026-09-01 | 19.8568 | -1.43% |
| 2026-08-31 | 20.1441 | +0.12% |
| 2026-08-30 | 20.12 | -0.06% |
| 2026-08-29 | 20.1316 | +1.06% |
| 2026-08-28 | 19.9196 | — |
EUR to MDL conversion table
1 EUR20.0553 MDL
5 EUR100.2764 MDL
10 EUR200.5528 MDL
25 EUR501.3821 MDL
50 EUR1,002.7642 MDL
100 EUR2,005.5284 MDL
500 EUR10,027.642 MDL
1,000 EUR20,055.284 MDL
5,000 EUR100,276.42 MDL
10,000 EUR200,552.84 MDL
Get the EUR/MDL rate in your app
One GET request returns the latest EUR → 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/EUR/MDL"fetch('https://rate-api.com/api/v1/pair/EUR/MDL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} MDL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/MDL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} MDL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/MDL');
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']} MDL\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "MDL"
},
"rate": 20.0553,
"timestamp": 1790429370,
"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 EURMoldovan Leu → Euro0.049862Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.