Convert AUD to IDR
Australian Dollar → Indonesian Rupiah
1 AUD = 12,593.847 IDR(1 IDR = 0.0000794039 AUD)
Currency converter
1 AUD =
12,593.847 IDR
AUD to IDR: last 30 days
Over the last 30 days, 1 AUD traded between 12,576.378 and 12,754.461 IDR, averaging 12,663.21 IDR. The AUD/IDR rate is down 1.20% since 2026-08-28.
- 30-day high
- 12,754.461
- 2026-09-21
- 30-day low
- 12,576.378
- 2026-09-23
- 30-day average
- 12,663.21
- Days with data: 30
- 30-day change
- -1.20%
- since 2026-08-28
12,754.461
12,576.3782026-08-28 → 2026-09-26
| Date | 1 AUD in IDR | Daily change |
|---|---|---|
| 2026-09-26 | 12,593.847 | 0.00% |
| 2026-09-25 | 12,593.847 | -0.05% |
| 2026-09-24 | 12,600.668 | +0.19% |
| 2026-09-23 | 12,576.378 | -0.74% |
| 2026-09-22 | 12,670.648 | -0.66% |
| 2026-09-21 | 12,754.461 | +0.51% |
| 2026-09-20 | 12,689.925 | 0.00% |
| 2026-09-19 | 12,689.925 | 0.00% |
| 2026-09-18 | 12,689.925 | +0.63% |
| 2026-09-17 | 12,610.799 | +0.07% |
| 2026-09-16 | 12,602.525 | -0.06% |
| 2026-09-15 | 12,610.09 | +0.15% |
| 2026-09-14 | 12,590.903 | -0.28% |
| 2026-09-13 | 12,625.879 | 0.00% |
| 2026-09-12 | 12,625.879 | 0.00% |
| Date | 1 AUD in IDR | Daily change |
|---|---|---|
| 2026-09-11 | 12,625.879 | -0.01% |
| 2026-09-10 | 12,626.814 | +0.00% |
| 2026-09-09 | 12,626.255 | -0.54% |
| 2026-09-08 | 12,695.332 | -0.28% |
| 2026-09-07 | 12,731.405 | +0.21% |
| 2026-09-06 | 12,704.221 | 0.00% |
| 2026-09-05 | 12,704.221 | 0.00% |
| 2026-09-04 | 12,704.221 | +0.08% |
| 2026-09-03 | 12,693.857 | +0.25% |
| 2026-09-02 | 12,661.711 | -0.08% |
| 2026-09-01 | 12,672.285 | -0.09% |
| 2026-08-31 | 12,683.521 | -0.50% |
| 2026-08-30 | 12,746.96 | 0.00% |
| 2026-08-29 | 12,746.96 | 0.00% |
| 2026-08-28 | 12,746.96 | — |
AUD to IDR conversion table
1 AUD12,593.847 IDR
5 AUD62,969.236 IDR
10 AUD125,938.47 IDR
25 AUD314,846.18 IDR
50 AUD629,692.36 IDR
100 AUD1,259,384.7 IDR
500 AUD6,296,923.6 IDR
1,000 AUD12,593,847 IDR
5,000 AUD62,969,236 IDR
10,000 AUD125,938,471 IDR
Get the AUD/IDR rate in your app
One GET request returns the latest AUD → IDR 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/IDR"fetch('https://rate-api.com/api/v1/pair/AUD/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/IDR');
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']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "IDR"
},
"rate": 12593.8471,
"timestamp": 1790429358,
"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
IDR to AUDIndonesian Rupiah → Australian Dollar0.000079404Convert AUD to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.