Convert MYR to AUD
Malaysian Ringgit → Australian Dollar
1 MYR = 0.349148 AUD(1 AUD = 2.864118 MYR)
Currency converter
1 MYR =
0.34915 AUD
MYR to AUD: last 30 days
Over the last 30 days, 1 MYR traded between 0.34007 and 0.34915 AUD, averaging 0.34436 AUD. The MYR/AUD rate is up 1.13% since 2026-08-28.
- 30-day high
- 0.34915
- 2026-09-25
- 30-day low
- 0.34007
- 2026-09-09
- 30-day average
- 0.34436
- Days with data: 30
- 30-day change
- +1.13%
- since 2026-08-28
0.34915
0.340072026-08-28 → 2026-09-26
| Date | 1 MYR in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.34915 | 0.00% |
| 2026-09-25 | 0.34915 | +0.27% |
| 2026-09-24 | 0.34821 | +0.41% |
| 2026-09-23 | 0.3468 | +0.46% |
| 2026-09-22 | 0.34521 | +0.47% |
| 2026-09-21 | 0.34359 | -0.18% |
| 2026-09-20 | 0.3442 | 0.00% |
| 2026-09-19 | 0.3442 | 0.00% |
| 2026-09-18 | 0.3442 | +0.37% |
| 2026-09-17 | 0.34294 | -0.04% |
| 2026-09-16 | 0.34306 | -0.09% |
| 2026-09-15 | 0.34338 | -0.21% |
| 2026-09-14 | 0.34411 | +0.47% |
| 2026-09-13 | 0.34251 | 0.00% |
| 2026-09-12 | 0.34251 | 0.00% |
| Date | 1 MYR in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.34251 | +0.05% |
| 2026-09-10 | 0.34234 | +0.67% |
| 2026-09-09 | 0.34007 | -0.35% |
| 2026-09-08 | 0.34128 | -0.38% |
| 2026-09-07 | 0.34259 | -0.19% |
| 2026-09-06 | 0.34323 | 0.00% |
| 2026-09-05 | 0.34323 | 0.00% |
| 2026-09-04 | 0.34323 | -0.22% |
| 2026-09-03 | 0.34398 | -0.54% |
| 2026-09-02 | 0.34584 | -0.23% |
| 2026-09-01 | 0.34665 | -0.05% |
| 2026-08-31 | 0.34682 | +0.46% |
| 2026-08-30 | 0.34523 | 0.00% |
| 2026-08-29 | 0.34523 | 0.00% |
| 2026-08-28 | 0.34523 | — |
MYR to AUD conversion table
1 MYR0.34915 AUD
5 MYR1.7457 AUD
10 MYR3.4915 AUD
25 MYR8.7287 AUD
50 MYR17.4574 AUD
100 MYR34.9148 AUD
500 MYR174.5738 AUD
1,000 MYR349.1476 AUD
5,000 MYR1,745.7379 AUD
10,000 MYR3,491.4758 AUD
Get the MYR/AUD rate in your app
One GET request returns the latest MYR → 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/MYR/AUD"fetch('https://rate-api.com/api/v1/pair/MYR/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "AUD"
},
"rate": 0.3491,
"timestamp": 1790432153,
"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 MYRAustralian Dollar → Malaysian Ringgit2.8641Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.