Convert AUD to USD
Australian Dollar → US Dollar
1 AUD = 0.703021 USD(1 USD = 1.422433 AUD)
Currency converter
1 AUD =
0.70302 USD
AUD to USD: last 30 days
Over the last 30 days, 1 AUD traded between 0.70266 and 0.72249 USD, averaging 0.71486 USD. The AUD/USD rate is down 2.29% since 2026-08-28.
- 30-day high
- 0.72249
- 2026-09-09
- 30-day low
- 0.70266
- 2026-09-24
- 30-day average
- 0.71486
- Days with data: 30
- 30-day change
- -2.29%
- since 2026-08-28
0.72249
0.702662026-08-28 → 2026-09-26
| Date | 1 AUD in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.70302 | 0.00% |
| 2026-09-25 | 0.70302 | +0.05% |
| 2026-09-24 | 0.70266 | -0.58% |
| 2026-09-23 | 0.70674 | -0.60% |
| 2026-09-22 | 0.71104 | -0.38% |
| 2026-09-21 | 0.71378 | +0.25% |
| 2026-09-20 | 0.712 | 0.00% |
| 2026-09-19 | 0.712 | 0.00% |
| 2026-09-18 | 0.712 | +0.09% |
| 2026-09-17 | 0.71139 | -0.26% |
| 2026-09-16 | 0.71322 | +0.09% |
| 2026-09-15 | 0.71256 | -0.06% |
| 2026-09-14 | 0.71296 | -0.60% |
| 2026-09-13 | 0.71726 | 0.00% |
| 2026-09-12 | 0.71726 | 0.00% |
| Date | 1 AUD in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.71726 | -0.17% |
| 2026-09-10 | 0.71849 | -0.55% |
| 2026-09-09 | 0.72249 | +0.14% |
| 2026-09-08 | 0.72145 | 0.00% |
| 2026-09-07 | 0.72145 | +0.15% |
| 2026-09-06 | 0.72036 | 0.00% |
| 2026-09-05 | 0.72036 | 0.00% |
| 2026-09-04 | 0.72036 | +0.14% |
| 2026-09-03 | 0.71932 | +0.64% |
| 2026-09-02 | 0.71475 | +0.09% |
| 2026-09-01 | 0.71413 | -0.29% |
| 2026-08-31 | 0.71618 | -0.46% |
| 2026-08-30 | 0.71948 | 0.00% |
| 2026-08-29 | 0.71948 | 0.00% |
| 2026-08-28 | 0.71948 | — |
AUD to USD conversion table
1 AUD0.70302 USD
5 AUD3.5151 USD
10 AUD7.0302 USD
25 AUD17.5755 USD
50 AUD35.151 USD
100 AUD70.3021 USD
500 AUD351.5105 USD
1,000 AUD703.021 USD
5,000 AUD3,515.1048 USD
10,000 AUD7,030.2096 USD
Get the AUD/USD rate in your app
One GET request returns the latest AUD → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/AUD/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "USD"
},
"rate": 0.703,
"timestamp": 1790429289,
"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
USD to AUDUS Dollar → Australian Dollar1.4224Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.