Convert MUR to AUD
Mauritian Rupee → Australian Dollar
1 MUR = 0.0299718 AUD(1 AUD = 33.364706 MUR)
Currency converter
1 MUR =
0.029972 AUD
MUR to AUD: last 30 days
Over the last 30 days, 1 MUR traded between 0.029432 and 0.029972 AUD, averaging 0.029664 AUD. The MUR/AUD rate is up 1.05% since 2026-08-28.
- 30-day high
- 0.029972
- 2026-09-25
- 30-day low
- 0.029432
- 2026-09-03
- 30-day average
- 0.029664
- Days with data: 30
- 30-day change
- +1.05%
- since 2026-08-28
0.029972
0.0294322026-08-28 → 2026-09-26
| Date | 1 MUR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.029972 | 0.00% |
| 2026-09-25 | 0.029972 | +0.81% |
| 2026-09-24 | 0.029732 | +0.12% |
| 2026-09-23 | 0.029695 | +0.66% |
| 2026-09-22 | 0.029502 | +0.19% |
| 2026-09-21 | 0.029447 | -0.23% |
| 2026-09-20 | 0.029516 | +0.03% |
| 2026-09-19 | 0.029507 | +0.02% |
| 2026-09-18 | 0.0295 | -0.37% |
| 2026-09-17 | 0.029611 | -0.53% |
| 2026-09-16 | 0.029768 | -0.10% |
| 2026-09-15 | 0.029799 | -0.43% |
| 2026-09-14 | 0.029926 | +0.80% |
| 2026-09-13 | 0.02969 | -0.02% |
| 2026-09-12 | 0.029694 | -0.28% |
| Date | 1 MUR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.029778 | +0.28% |
| 2026-09-10 | 0.029694 | +0.53% |
| 2026-09-09 | 0.029538 | -0.05% |
| 2026-09-08 | 0.029554 | -0.08% |
| 2026-09-07 | 0.029579 | -0.19% |
| 2026-09-06 | 0.029636 | -0.04% |
| 2026-09-05 | 0.029647 | +0.18% |
| 2026-09-04 | 0.029593 | +0.55% |
| 2026-09-03 | 0.029432 | -0.97% |
| 2026-09-02 | 0.02972 | -0.05% |
| 2026-09-01 | 0.029736 | +0.11% |
| 2026-08-31 | 0.029702 | +0.16% |
| 2026-08-30 | 0.029654 | -0.01% |
| 2026-08-29 | 0.029657 | -0.01% |
| 2026-08-28 | 0.029659 | — |
MUR to AUD conversion table
1 MUR0.029972 AUD
5 MUR0.14986 AUD
10 MUR0.29972 AUD
25 MUR0.74929 AUD
50 MUR1.4986 AUD
100 MUR2.9972 AUD
500 MUR14.9859 AUD
1,000 MUR29.9718 AUD
5,000 MUR149.859 AUD
10,000 MUR299.7179 AUD
Get the MUR/AUD rate in your app
One GET request returns the latest MUR → AUD 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/AUD"fetch('https://rate-api.com/api/v1/pair/MUR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MUR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MUR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MUR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MUR/AUD');
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']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "MUR",
"to": "AUD"
},
"rate": 0.03,
"timestamp": 1790432036,
"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
AUD to MURAustralian Dollar → Mauritian Rupee33.3647Convert MUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.