Convert MYR to EUR
Malaysian Ringgit → Euro
1 MYR = 0.215257 EUR(1 EUR = 4.6456 MYR)
Currency converter
1 MYR =
0.21526 EUR
MYR to EUR: last 30 days
Over the last 30 days, 1 MYR traded between 0.21086 and 0.21526 EUR, averaging 0.21314 EUR. The MYR/EUR rate is up 0.90% since 2026-08-28.
- 30-day high
- 0.21526
- 2026-09-25
- 30-day low
- 0.21086
- 2026-09-09
- 30-day average
- 0.21314
- Days with data: 30
- 30-day change
- +0.90%
- since 2026-08-28
0.21526
0.210862026-08-28 → 2026-09-26
| Date | 1 MYR in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.21526 | 0.00% |
| 2026-09-25 | 0.21526 | +0.00% |
| 2026-09-24 | 0.21525 | +0.22% |
| 2026-09-23 | 0.21479 | +0.31% |
| 2026-09-22 | 0.21413 | +0.32% |
| 2026-09-21 | 0.21344 | -0.19% |
| 2026-09-20 | 0.21385 | 0.00% |
| 2026-09-19 | 0.21385 | 0.00% |
| 2026-09-18 | 0.21385 | +0.64% |
| 2026-09-17 | 0.21249 | +0.19% |
| 2026-09-16 | 0.21208 | +0.02% |
| 2026-09-15 | 0.21205 | -0.17% |
| 2026-09-14 | 0.2124 | +0.22% |
| 2026-09-13 | 0.21193 | 0.00% |
| 2026-09-12 | 0.21193 | 0.00% |
| Date | 1 MYR in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.21193 | +0.08% |
| 2026-09-10 | 0.21175 | +0.42% |
| 2026-09-09 | 0.21086 | -0.53% |
| 2026-09-08 | 0.212 | -0.31% |
| 2026-09-07 | 0.21266 | -0.04% |
| 2026-09-06 | 0.21274 | 0.00% |
| 2026-09-05 | 0.21274 | 0.00% |
| 2026-09-04 | 0.21274 | -0.13% |
| 2026-09-03 | 0.21303 | -0.22% |
| 2026-09-02 | 0.2135 | -0.04% |
| 2026-09-01 | 0.21359 | -0.28% |
| 2026-08-31 | 0.2142 | +0.41% |
| 2026-08-30 | 0.21334 | 0.00% |
| 2026-08-29 | 0.21334 | 0.00% |
| 2026-08-28 | 0.21334 | — |
MYR to EUR conversion table
1 MYR0.21526 EUR
5 MYR1.0763 EUR
10 MYR2.1526 EUR
25 MYR5.3814 EUR
50 MYR10.7629 EUR
100 MYR21.5257 EUR
500 MYR107.6287 EUR
1,000 MYR215.2575 EUR
5,000 MYR1,076.2872 EUR
10,000 MYR2,152.5745 EUR
Get the MYR/EUR rate in your app
One GET request returns the latest MYR → 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/MYR/EUR"fetch('https://rate-api.com/api/v1/pair/MYR/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "EUR"
},
"rate": 0.2153,
"timestamp": 1790432229,
"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 MYREuro → Malaysian Ringgit4.6456Convert MYR to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.