Convert AUD to ARS
Australian Dollar → Argentine Peso
1 AUD = 1,068.484 ARS(1 ARS = 0.000935905 AUD)
Currency converter
1 AUD =
1,068.484 ARS
AUD to ARS: last 30 days
Over the last 30 days, 1 AUD traded between 1,065.1479 and 1,092.0354 ARS, averaging 1,080.4817 ARS. The AUD/ARS rate is down 1.79% since 2026-08-28.
- 30-day high
- 1,092.0354
- 2026-09-09
- 30-day low
- 1,065.1479
- 2026-09-24
- 30-day average
- 1,080.4817
- Days with data: 30
- 30-day change
- -1.79%
- since 2026-08-28
1,092.0354
1,065.14792026-08-28 → 2026-09-26
| Date | 1 AUD in ARS | Daily change |
|---|---|---|
| 2026-09-26 | 1,068.484 | 0.00% |
| 2026-09-25 | 1,068.484 | +0.31% |
| 2026-09-24 | 1,065.1479 | -0.47% |
| 2026-09-23 | 1,070.1669 | -0.59% |
| 2026-09-22 | 1,076.4814 | -0.08% |
| 2026-09-21 | 1,077.3663 | -0.10% |
| 2026-09-20 | 1,078.4338 | -0.15% |
| 2026-09-19 | 1,080.0013 | +0.45% |
| 2026-09-18 | 1,075.1135 | -0.10% |
| 2026-09-17 | 1,076.1601 | +0.13% |
| 2026-09-16 | 1,074.7152 | +0.02% |
| 2026-09-15 | 1,074.5114 | -0.39% |
| 2026-09-14 | 1,078.7056 | -0.31% |
| 2026-09-13 | 1,082.0717 | -0.00% |
| 2026-09-12 | 1,082.0975 | -0.27% |
| Date | 1 AUD in ARS | Daily change |
|---|---|---|
| 2026-09-11 | 1,084.9749 | -0.24% |
| 2026-09-10 | 1,087.638 | -0.40% |
| 2026-09-09 | 1,092.0354 | +0.13% |
| 2026-09-08 | 1,090.6194 | +0.17% |
| 2026-09-07 | 1,088.7629 | +0.19% |
| 2026-09-06 | 1,086.6704 | +0.04% |
| 2026-09-05 | 1,086.2347 | -0.04% |
| 2026-09-04 | 1,086.6222 | -0.01% |
| 2026-09-03 | 1,086.7162 | +0.51% |
| 2026-09-02 | 1,081.2169 | +0.36% |
| 2026-09-01 | 1,077.3913 | -0.25% |
| 2026-08-31 | 1,080.0382 | -0.37% |
| 2026-08-30 | 1,084.081 | -0.13% |
| 2026-08-29 | 1,085.5248 | -0.23% |
| 2026-08-28 | 1,087.9835 | — |
AUD to ARS conversion table
1 AUD1,068.484 ARS
5 AUD5,342.4201 ARS
10 AUD10,684.84 ARS
25 AUD26,712.1 ARS
50 AUD53,424.201 ARS
100 AUD106,848.4 ARS
500 AUD534,242.01 ARS
1,000 AUD1,068,484 ARS
5,000 AUD5,342,420.1 ARS
10,000 AUD10,684,840 ARS
Get the AUD/ARS rate in your app
One GET request returns the latest AUD → ARS 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/ARS"fetch('https://rate-api.com/api/v1/pair/AUD/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/ARS');
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']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "ARS"
},
"rate": 1068.484,
"timestamp": 1790429295,
"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
ARS to AUDArgentine Peso → Australian Dollar0.00093591Convert AUD to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.