Convert AUD to MDL
Australian Dollar → Moldovan Leu
1 AUD = 12.43341 MDL(1 MDL = 0.0804285 AUD)
Currency converter
1 AUD =
12.4334 MDL
AUD to MDL: last 30 days
Over the last 30 days, 1 AUD traded between 12.235 and 12.5284 MDL, averaging 12.4222 MDL. The AUD/MDL rate is down 0.06% since 2026-08-29.
- 30-day high
- 12.5284
- 2026-09-21
- 30-day low
- 12.235
- 2026-09-01
- 30-day average
- 12.4222
- Days with data: 30
- 30-day change
- -0.06%
- since 2026-08-29
12.5284
12.2352026-08-29 → 2026-09-27
| Date | 1 AUD in MDL | Daily change |
|---|---|---|
| 2026-09-27 | 12.4334 | 0.00% |
| 2026-09-26 | 12.4334 | +0.56% |
| 2026-09-25 | 12.3645 | +0.05% |
| 2026-09-24 | 12.3587 | -0.57% |
| 2026-09-23 | 12.4295 | -0.44% |
| 2026-09-22 | 12.4845 | -0.35% |
| 2026-09-21 | 12.5284 | +0.45% |
| 2026-09-20 | 12.4718 | -0.28% |
| 2026-09-19 | 12.5074 | +0.08% |
| 2026-09-18 | 12.4978 | +0.19% |
| 2026-09-17 | 12.4735 | +0.62% |
| 2026-09-16 | 12.3967 | +0.04% |
| 2026-09-15 | 12.3919 | +0.31% |
| 2026-09-14 | 12.354 | -0.08% |
| 2026-09-13 | 12.3633 | -0.39% |
| Date | 1 AUD in MDL | Daily change |
|---|---|---|
| 2026-09-12 | 12.4118 | +0.08% |
| 2026-09-11 | 12.402 | -0.03% |
| 2026-09-10 | 12.4053 | -0.29% |
| 2026-09-09 | 12.4415 | -0.02% |
| 2026-09-08 | 12.4445 | +0.12% |
| 2026-09-07 | 12.429 | +0.02% |
| 2026-09-06 | 12.4265 | +0.18% |
| 2026-09-05 | 12.4047 | -0.29% |
| 2026-09-04 | 12.4408 | -0.07% |
| 2026-09-03 | 12.4497 | +0.64% |
| 2026-09-02 | 12.37 | +1.10% |
| 2026-09-01 | 12.235 | -1.66% |
| 2026-08-31 | 12.4412 | +0.07% |
| 2026-08-30 | 12.4331 | -0.06% |
| 2026-08-29 | 12.4404 | — |
AUD to MDL conversion table
1 AUD12.4334 MDL
5 AUD62.1671 MDL
10 AUD124.3341 MDL
25 AUD310.8353 MDL
50 AUD621.6705 MDL
100 AUD1,243.341 MDL
500 AUD6,216.705 MDL
1,000 AUD12,433.41 MDL
5,000 AUD62,167.05 MDL
10,000 AUD124,334.1 MDL
Get the AUD/MDL rate in your app
One GET request returns the latest AUD → MDL 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/MDL"fetch('https://rate-api.com/api/v1/pair/AUD/MDL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} MDL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/MDL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} MDL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/MDL');
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']} MDL\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "MDL"
},
"rate": 12.4334,
"timestamp": 1790470775,
"date": "2026-09-27"
}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
MDL to AUDMoldovan Leu → Australian Dollar0.080428Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.