Convert MUR to EUR
Mauritian Rupee → Euro
1 MUR = 0.0184783 EUR(1 EUR = 54.117554 MUR)
Currency converter
1 MUR =
0.018478 EUR
MUR to EUR: last 30 days
Over the last 30 days, 1 MUR traded between 0.018228 and 0.018478 EUR, averaging 0.018361 EUR. The MUR/EUR rate is up 0.82% since 2026-08-28.
- 30-day high
- 0.018478
- 2026-09-25
- 30-day low
- 0.018228
- 2026-09-03
- 30-day average
- 0.018361
- Days with data: 30
- 30-day change
- +0.82%
- since 2026-08-28
0.018478
0.0182282026-08-28 → 2026-09-26
| Date | 1 MUR in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.018478 | 0.00% |
| 2026-09-25 | 0.018478 | +0.54% |
| 2026-09-24 | 0.018379 | -0.07% |
| 2026-09-23 | 0.018392 | +0.50% |
| 2026-09-22 | 0.0183 | +0.04% |
| 2026-09-21 | 0.018293 | -0.24% |
| 2026-09-20 | 0.018338 | +0.03% |
| 2026-09-19 | 0.018333 | +0.02% |
| 2026-09-18 | 0.018328 | -0.11% |
| 2026-09-17 | 0.018348 | -0.30% |
| 2026-09-16 | 0.018402 | +0.01% |
| 2026-09-15 | 0.018401 | -0.38% |
| 2026-09-14 | 0.018471 | +0.55% |
| 2026-09-13 | 0.01837 | -0.02% |
| 2026-09-12 | 0.018373 | -0.28% |
| Date | 1 MUR in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.018425 | +0.32% |
| 2026-09-10 | 0.018367 | +0.28% |
| 2026-09-09 | 0.018315 | -0.24% |
| 2026-09-08 | 0.018359 | -0.01% |
| 2026-09-07 | 0.018361 | -0.04% |
| 2026-09-06 | 0.018369 | -0.04% |
| 2026-09-05 | 0.018376 | +0.18% |
| 2026-09-04 | 0.018343 | +0.63% |
| 2026-09-03 | 0.018228 | -0.65% |
| 2026-09-02 | 0.018347 | +0.14% |
| 2026-09-01 | 0.018322 | -0.12% |
| 2026-08-31 | 0.018344 | +0.11% |
| 2026-08-30 | 0.018325 | -0.01% |
| 2026-08-29 | 0.018327 | -0.01% |
| 2026-08-28 | 0.018328 | — |
MUR to EUR conversion table
1 MUR0.018478 EUR
5 MUR0.092391 EUR
10 MUR0.18478 EUR
25 MUR0.46196 EUR
50 MUR0.92391 EUR
100 MUR1.8478 EUR
500 MUR9.2391 EUR
1,000 MUR18.4783 EUR
5,000 MUR92.3915 EUR
10,000 MUR184.7829 EUR
Get the MUR/EUR rate in your app
One GET request returns the latest MUR → 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/MUR/EUR"fetch('https://rate-api.com/api/v1/pair/MUR/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MUR = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MUR/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MUR = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MUR/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MUR = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "MUR",
"to": "EUR"
},
"rate": 0.0185,
"timestamp": 1790435064,
"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 MUREuro → Mauritian Rupee54.1176Convert MUR to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.