Convert AUD to MYR
Australian Dollar → Malaysian Ringgit
1 AUD = 2.864118 MYR(1 MYR = 0.349148 AUD)
Currency converter
1 AUD =
2.8641 MYR
AUD to MYR: last 30 days
Over the last 30 days, 1 AUD traded between 2.8641 and 2.9405 MYR, averaging 2.9041 MYR. The AUD/MYR rate is down 1.12% since 2026-08-28.
- 30-day high
- 2.9405
- 2026-09-09
- 30-day low
- 2.8641
- 2026-09-25
- 30-day average
- 2.9041
- Days with data: 30
- 30-day change
- -1.12%
- since 2026-08-28
2.9405
2.86412026-08-28 → 2026-09-26
| Date | 1 AUD in MYR | Daily change |
|---|---|---|
| 2026-09-26 | 2.8641 | 0.00% |
| 2026-09-25 | 2.8641 | -0.27% |
| 2026-09-24 | 2.8718 | -0.41% |
| 2026-09-23 | 2.8835 | -0.46% |
| 2026-09-22 | 2.8968 | -0.47% |
| 2026-09-21 | 2.9104 | +0.18% |
| 2026-09-20 | 2.9053 | 0.00% |
| 2026-09-19 | 2.9053 | 0.00% |
| 2026-09-18 | 2.9053 | -0.37% |
| 2026-09-17 | 2.916 | +0.04% |
| 2026-09-16 | 2.9149 | +0.09% |
| 2026-09-15 | 2.9122 | +0.21% |
| 2026-09-14 | 2.906 | -0.46% |
| 2026-09-13 | 2.9196 | 0.00% |
| 2026-09-12 | 2.9196 | 0.00% |
| Date | 1 AUD in MYR | Daily change |
|---|---|---|
| 2026-09-11 | 2.9196 | -0.05% |
| 2026-09-10 | 2.921 | -0.66% |
| 2026-09-09 | 2.9405 | +0.35% |
| 2026-09-08 | 2.9302 | +0.38% |
| 2026-09-07 | 2.919 | +0.19% |
| 2026-09-06 | 2.9135 | 0.00% |
| 2026-09-05 | 2.9135 | 0.00% |
| 2026-09-04 | 2.9135 | +0.22% |
| 2026-09-03 | 2.9071 | +0.54% |
| 2026-09-02 | 2.8915 | +0.23% |
| 2026-09-01 | 2.8847 | +0.05% |
| 2026-08-31 | 2.8833 | -0.46% |
| 2026-08-30 | 2.8966 | 0.00% |
| 2026-08-29 | 2.8966 | 0.00% |
| 2026-08-28 | 2.8966 | — |
AUD to MYR conversion table
1 AUD2.8641 MYR
5 AUD14.3206 MYR
10 AUD28.6412 MYR
25 AUD71.603 MYR
50 AUD143.2059 MYR
100 AUD286.4118 MYR
500 AUD1,432.0592 MYR
1,000 AUD2,864.1184 MYR
5,000 AUD14,320.592 MYR
10,000 AUD28,641.184 MYR
Get the AUD/MYR rate in your app
One GET request returns the latest AUD → MYR 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/MYR"fetch('https://rate-api.com/api/v1/pair/AUD/MYR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} MYR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/MYR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} MYR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/MYR');
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']} MYR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "MYR"
},
"rate": 2.8641,
"timestamp": 1790429400,
"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
MYR to AUDMalaysian Ringgit → Australian Dollar0.34915Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.