Convert MVR to AUD
Maldivian Rufiyaa → Australian Dollar
1 MVR = 0.0920108 AUD(1 AUD = 10.868295 MVR)
Currency converter
1 MVR =
0.092011 AUD
MVR to AUD: last 30 days
Over the last 30 days, 1 MVR traded between 0.089553 and 0.092056 AUD, averaging 0.090518 AUD. The MVR/AUD rate is up 2.34% since 2026-08-28.
- 30-day high
- 0.092056
- 2026-09-24
- 30-day low
- 0.089553
- 2026-09-09
- 30-day average
- 0.090518
- Days with data: 30
- 30-day change
- +2.34%
- since 2026-08-28
0.092056
0.0895532026-08-28 → 2026-09-26
| Date | 1 MVR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.092011 | 0.00% |
| 2026-09-25 | 0.092011 | -0.05% |
| 2026-09-24 | 0.092056 | +0.58% |
| 2026-09-23 | 0.091525 | +0.61% |
| 2026-09-22 | 0.090974 | +0.31% |
| 2026-09-21 | 0.090691 | -0.33% |
| 2026-09-20 | 0.090994 | -0.11% |
| 2026-09-19 | 0.091093 | +0.21% |
| 2026-09-18 | 0.090906 | -0.19% |
| 2026-09-17 | 0.091078 | +0.32% |
| 2026-09-16 | 0.090786 | -0.05% |
| 2026-09-15 | 0.090831 | +0.10% |
| 2026-09-14 | 0.090745 | +0.61% |
| 2026-09-13 | 0.090196 | -0.06% |
| 2026-09-12 | 0.090247 | +0.04% |
| Date | 1 MVR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.090208 | +0.18% |
| 2026-09-10 | 0.090044 | +0.55% |
| 2026-09-09 | 0.089553 | -0.12% |
| 2026-09-08 | 0.08966 | -0.00% |
| 2026-09-07 | 0.08966 | -0.15% |
| 2026-09-06 | 0.089794 | -0.01% |
| 2026-09-05 | 0.089803 | +0.01% |
| 2026-09-04 | 0.089796 | -0.14% |
| 2026-09-03 | 0.089925 | -0.64% |
| 2026-09-02 | 0.0905 | -0.07% |
| 2026-09-01 | 0.090562 | +0.32% |
| 2026-08-31 | 0.090272 | +0.46% |
| 2026-08-30 | 0.089858 | +0.00% |
| 2026-08-29 | 0.089856 | -0.05% |
| 2026-08-28 | 0.089905 | — |
MVR to AUD conversion table
1 MVR0.092011 AUD
5 MVR0.46005 AUD
10 MVR0.92011 AUD
25 MVR2.3003 AUD
50 MVR4.6005 AUD
100 MVR9.2011 AUD
500 MVR46.0054 AUD
1,000 MVR92.0108 AUD
5,000 MVR460.0538 AUD
10,000 MVR920.1075 AUD
Get the MVR/AUD rate in your app
One GET request returns the latest MVR → 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/MVR/AUD"fetch('https://rate-api.com/api/v1/pair/MVR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MVR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MVR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MVR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MVR/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MVR = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "MVR",
"to": "AUD"
},
"rate": 0.092,
"timestamp": 1790432063,
"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 MVRAustralian Dollar → Maldivian Rufiyaa10.8683Convert MVR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.