Convert AUD to MUR
Australian Dollar → Mauritian Rupee
1 AUD = 33.364706 MUR(1 MUR = 0.0299718 AUD)
Currency converter
1 AUD =
33.3647 MUR
AUD to MUR: last 30 days
Over the last 30 days, 1 AUD traded between 33.3647 and 33.9762 MUR, averaging 33.712 MUR. The AUD/MUR rate is down 1.04% since 2026-08-28.
- 30-day high
- 33.9762
- 2026-09-03
- 30-day low
- 33.3647
- 2026-09-25
- 30-day average
- 33.712
- Days with data: 30
- 30-day change
- -1.04%
- since 2026-08-28
33.9762
33.36472026-08-28 → 2026-09-26
| Date | 1 AUD in MUR | Daily change |
|---|---|---|
| 2026-09-26 | 33.3647 | 0.00% |
| 2026-09-25 | 33.3647 | -0.80% |
| 2026-09-24 | 33.634 | -0.12% |
| 2026-09-23 | 33.6752 | -0.65% |
| 2026-09-22 | 33.8958 | -0.19% |
| 2026-09-21 | 33.9595 | +0.23% |
| 2026-09-20 | 33.8804 | -0.03% |
| 2026-09-19 | 33.8899 | -0.02% |
| 2026-09-18 | 33.8981 | +0.38% |
| 2026-09-17 | 33.7711 | +0.53% |
| 2026-09-16 | 33.5936 | +0.10% |
| 2026-09-15 | 33.5586 | +0.43% |
| 2026-09-14 | 33.4157 | -0.79% |
| 2026-09-13 | 33.6819 | +0.02% |
| 2026-09-12 | 33.6763 | +0.28% |
| Date | 1 AUD in MUR | Daily change |
|---|---|---|
| 2026-09-11 | 33.5821 | -0.28% |
| 2026-09-10 | 33.6772 | -0.52% |
| 2026-09-09 | 33.8545 | +0.05% |
| 2026-09-08 | 33.8361 | +0.08% |
| 2026-09-07 | 33.808 | +0.19% |
| 2026-09-06 | 33.7425 | +0.04% |
| 2026-09-05 | 33.7301 | -0.18% |
| 2026-09-04 | 33.7916 | -0.54% |
| 2026-09-03 | 33.9762 | +0.98% |
| 2026-09-02 | 33.6473 | +0.05% |
| 2026-09-01 | 33.6294 | -0.11% |
| 2026-08-31 | 33.668 | -0.16% |
| 2026-08-30 | 33.7224 | +0.01% |
| 2026-08-29 | 33.7188 | +0.01% |
| 2026-08-28 | 33.7164 | — |
AUD to MUR conversion table
1 AUD33.3647 MUR
5 AUD166.8235 MUR
10 AUD333.6471 MUR
25 AUD834.1177 MUR
50 AUD1,668.2353 MUR
100 AUD3,336.4706 MUR
500 AUD16,682.353 MUR
1,000 AUD33,364.706 MUR
5,000 AUD166,823.53 MUR
10,000 AUD333,647.06 MUR
Get the AUD/MUR rate in your app
One GET request returns the latest AUD → MUR 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/AUD/MUR"fetch('https://rate-api.com/api/v1/pair/AUD/MUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} MUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/MUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} MUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/MUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} MUR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "MUR"
},
"rate": 33.3647,
"timestamp": 1790429284,
"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
MUR to AUDMauritian Rupee → Australian Dollar0.029972Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.