Convert MDL to AUD
Moldovan Leu → Australian Dollar
1 MDL = 0.0808764 AUD(1 AUD = 12.36454 MDL)
Currency converter
1 MDL =
0.080876 AUD
MDL to AUD: last 30 days
Over the last 30 days, 1 MDL traded between 0.079819 and 0.081733 AUD, averaging 0.080545 AUD. The MDL/AUD rate is down 0.45% since 2026-08-28.
- 30-day high
- 0.081733
- 2026-09-01
- 30-day low
- 0.079819
- 2026-09-21
- 30-day average
- 0.080545
- Days with data: 30
- 30-day change
- -0.45%
- since 2026-08-28
0.081733
0.0798192026-08-28 → 2026-09-26
| Date | 1 MDL in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.080876 | 0.00% |
| 2026-09-25 | 0.080876 | -0.05% |
| 2026-09-24 | 0.080914 | +0.57% |
| 2026-09-23 | 0.080454 | +0.44% |
| 2026-09-22 | 0.080099 | +0.35% |
| 2026-09-21 | 0.079819 | -0.45% |
| 2026-09-20 | 0.080181 | +0.28% |
| 2026-09-19 | 0.079953 | -0.08% |
| 2026-09-18 | 0.080014 | -0.19% |
| 2026-09-17 | 0.08017 | -0.62% |
| 2026-09-16 | 0.080667 | -0.04% |
| 2026-09-15 | 0.080698 | -0.31% |
| 2026-09-14 | 0.080946 | +0.08% |
| 2026-09-13 | 0.080885 | +0.39% |
| 2026-09-12 | 0.080568 | -0.08% |
| Date | 1 MDL in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.080632 | +0.03% |
| 2026-09-10 | 0.08061 | +0.29% |
| 2026-09-09 | 0.080376 | +0.02% |
| 2026-09-08 | 0.080357 | -0.12% |
| 2026-09-07 | 0.080457 | -0.02% |
| 2026-09-06 | 0.080473 | -0.18% |
| 2026-09-05 | 0.080614 | +0.29% |
| 2026-09-04 | 0.080381 | +0.07% |
| 2026-09-03 | 0.080323 | -0.64% |
| 2026-09-02 | 0.080841 | -1.09% |
| 2026-09-01 | 0.081733 | +1.69% |
| 2026-08-31 | 0.080378 | -0.07% |
| 2026-08-30 | 0.08043 | +0.06% |
| 2026-08-29 | 0.080383 | -1.05% |
| 2026-08-28 | 0.081239 | — |
MDL to AUD conversion table
1 MDL0.080876 AUD
5 MDL0.40438 AUD
10 MDL0.80876 AUD
25 MDL2.0219 AUD
50 MDL4.0438 AUD
100 MDL8.0876 AUD
500 MDL40.4382 AUD
1,000 MDL80.8764 AUD
5,000 MDL404.3822 AUD
10,000 MDL808.7644 AUD
Get the MDL/AUD rate in your app
One GET request returns the latest MDL → 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/MDL/AUD"fetch('https://rate-api.com/api/v1/pair/MDL/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MDL = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MDL/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MDL = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MDL/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MDL = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "MDL",
"to": "AUD"
},
"rate": 0.0809,
"timestamp": 1790435059,
"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 MDLAustralian Dollar → Moldovan Leu12.3645Convert MDL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.