Convert AUD to MOP
Australian Dollar → Macanese Pataca
1 AUD = 5.679923 MOP(1 MOP = 0.176059 AUD)
Currency converter
1 AUD =
5.6799 MOP
AUD to MOP: last 30 days
Over the last 30 days, 1 AUD traded between 5.6761 and 5.8359 MOP, averaging 5.7744 MOP. The AUD/MOP rate is down 2.24% since 2026-08-28.
- 30-day high
- 5.8359
- 2026-09-09
- 30-day low
- 5.6761
- 2026-09-24
- 30-day average
- 5.7744
- Days with data: 30
- 30-day change
- -2.24%
- since 2026-08-28
5.8359
5.67612026-08-28 → 2026-09-26
| Date | 1 AUD in MOP | Daily change |
|---|---|---|
| 2026-09-26 | 5.6799 | 0.00% |
| 2026-09-25 | 5.6799 | +0.07% |
| 2026-09-24 | 5.6761 | -0.59% |
| 2026-09-23 | 5.7098 | -0.61% |
| 2026-09-22 | 5.745 | -0.39% |
| 2026-09-21 | 5.7677 | +0.25% |
| 2026-09-20 | 5.7532 | +0.00% |
| 2026-09-19 | 5.7532 | +0.01% |
| 2026-09-18 | 5.7528 | +0.08% |
| 2026-09-17 | 5.7485 | -0.24% |
| 2026-09-16 | 5.7625 | +0.10% |
| 2026-09-15 | 5.7568 | -0.05% |
| 2026-09-14 | 5.7595 | -0.60% |
| 2026-09-13 | 5.7942 | +0.00% |
| 2026-09-12 | 5.7941 | +0.02% |
| Date | 1 AUD in MOP | Daily change |
|---|---|---|
| 2026-09-11 | 5.7932 | -0.17% |
| 2026-09-10 | 5.803 | -0.57% |
| 2026-09-09 | 5.8359 | +0.17% |
| 2026-09-08 | 5.8262 | +0.02% |
| 2026-09-07 | 5.8252 | +0.13% |
| 2026-09-06 | 5.8174 | -0.00% |
| 2026-09-05 | 5.8176 | +0.00% |
| 2026-09-04 | 5.8175 | +0.13% |
| 2026-09-03 | 5.81 | +0.65% |
| 2026-09-02 | 5.7726 | +0.11% |
| 2026-09-01 | 5.7662 | -0.28% |
| 2026-08-31 | 5.7826 | -0.49% |
| 2026-08-30 | 5.811 | +0.02% |
| 2026-08-29 | 5.8098 | +0.00% |
| 2026-08-28 | 5.8098 | — |
AUD to MOP conversion table
1 AUD5.6799 MOP
5 AUD28.3996 MOP
10 AUD56.7992 MOP
25 AUD141.9981 MOP
50 AUD283.9962 MOP
100 AUD567.9923 MOP
500 AUD2,839.9615 MOP
1,000 AUD5,679.9229 MOP
5,000 AUD28,399.615 MOP
10,000 AUD56,799.229 MOP
Get the AUD/MOP rate in your app
One GET request returns the latest AUD → MOP 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/MOP"fetch('https://rate-api.com/api/v1/pair/AUD/MOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} MOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/MOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} MOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/MOP');
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']} MOP\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "MOP"
},
"rate": 5.6799,
"timestamp": 1790437509,
"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
MOP to AUDMacanese Pataca → Australian Dollar0.17606Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.