Convert AUD to MKD
Australian Dollar → Macedonian Denar
1 AUD = 37.965605 MKD(1 MKD = 0.0263396 AUD)
Currency converter
1 AUD =
37.9656 MKD
AUD to MKD: last 30 days
Over the last 30 days, 1 AUD traded between 37.8307 and 38.2242 MKD, averaging 38.0519 MKD. The AUD/MKD rate is down 0.05% since 2026-08-28.
- 30-day high
- 38.2242
- 2026-09-21
- 30-day low
- 37.8307
- 2026-09-14
- 30-day average
- 38.0519
- Days with data: 30
- 30-day change
- -0.05%
- since 2026-08-28
38.2242
37.83072026-08-28 → 2026-09-26
| Date | 1 AUD in MKD | Daily change |
|---|---|---|
| 2026-09-26 | 37.9656 | 0.00% |
| 2026-09-25 | 37.9656 | +0.16% |
| 2026-09-24 | 37.904 | -0.15% |
| 2026-09-23 | 37.9623 | -0.41% |
| 2026-09-22 | 38.1167 | -0.28% |
| 2026-09-21 | 38.2242 | +0.05% |
| 2026-09-20 | 38.2051 | +0.02% |
| 2026-09-19 | 38.1978 | +0.10% |
| 2026-09-18 | 38.1584 | -0.04% |
| 2026-09-17 | 38.1741 | +0.36% |
| 2026-09-16 | 38.0368 | +0.15% |
| 2026-09-15 | 37.9782 | +0.39% |
| 2026-09-14 | 37.8307 | -0.47% |
| 2026-09-13 | 38.0085 | -0.11% |
| 2026-09-12 | 38.0493 | +0.15% |
| Date | 1 AUD in MKD | Daily change |
|---|---|---|
| 2026-09-11 | 37.9906 | -0.04% |
| 2026-09-10 | 38.0058 | -0.54% |
| 2026-09-09 | 38.2121 | +0.10% |
| 2026-09-08 | 38.1747 | -0.08% |
| 2026-09-07 | 38.2046 | +0.21% |
| 2026-09-06 | 38.1262 | +0.01% |
| 2026-09-05 | 38.1205 | +0.02% |
| 2026-09-04 | 38.1143 | -0.17% |
| 2026-09-03 | 38.1806 | +0.58% |
| 2026-09-02 | 37.96 | +0.29% |
| 2026-09-01 | 37.8496 | -0.08% |
| 2026-08-31 | 37.8813 | -0.27% |
| 2026-08-30 | 37.9826 | -0.03% |
| 2026-08-29 | 37.9922 | +0.02% |
| 2026-08-28 | 37.9854 | — |
AUD to MKD conversion table
1 AUD37.9656 MKD
5 AUD189.828 MKD
10 AUD379.6561 MKD
25 AUD949.1401 MKD
50 AUD1,898.2803 MKD
100 AUD3,796.5605 MKD
500 AUD18,982.803 MKD
1,000 AUD37,965.605 MKD
5,000 AUD189,828.03 MKD
10,000 AUD379,656.05 MKD
Get the AUD/MKD rate in your app
One GET request returns the latest AUD → MKD 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/MKD"fetch('https://rate-api.com/api/v1/pair/AUD/MKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} MKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/MKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} MKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/MKD');
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']} MKD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "MKD"
},
"rate": 37.9656,
"timestamp": 1790429288,
"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
MKD to AUDMacedonian Denar → Australian Dollar0.02634Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.