Convert AUD to ANG
Australian Dollar → Netherlands Antillean Guilder
1 AUD = 1.258408 ANG(1 ANG = 0.794655 AUD)
Currency converter
1 AUD =
1.2584 ANG
AUD to ANG: last 30 days
Over the last 30 days, 1 AUD traded between 1.2578 and 1.3004 ANG, averaging 1.286 ANG. The AUD/ANG rate is down 2.83% since 2026-08-28.
- 30-day high
- 1.3004
- 2026-09-07
- 30-day low
- 1.2578
- 2026-09-24
- 30-day average
- 1.286
- Days with data: 30
- 30-day change
- -2.83%
- since 2026-08-28
1.3004
1.25782026-08-28 → 2026-09-26
| Date | 1 AUD in ANG | Daily change |
|---|---|---|
| 2026-09-26 | 1.2584 | 0.00% |
| 2026-09-25 | 1.2584 | +0.05% |
| 2026-09-24 | 1.2578 | -0.58% |
| 2026-09-23 | 1.2651 | -1.26% |
| 2026-09-22 | 1.2812 | -0.29% |
| 2026-09-21 | 1.285 | +0.42% |
| 2026-09-20 | 1.2797 | -0.14% |
| 2026-09-19 | 1.2814 | +0.53% |
| 2026-09-18 | 1.2747 | -1.00% |
| 2026-09-17 | 1.2877 | +0.20% |
| 2026-09-16 | 1.2852 | +0.14% |
| 2026-09-15 | 1.2834 | -0.14% |
| 2026-09-14 | 1.2852 | -0.28% |
| 2026-09-13 | 1.2888 | -0.01% |
| 2026-09-12 | 1.2889 | -0.38% |
| Date | 1 AUD in ANG | Daily change |
|---|---|---|
| 2026-09-11 | 1.2938 | -0.06% |
| 2026-09-10 | 1.2946 | -0.39% |
| 2026-09-09 | 1.2996 | -0.01% |
| 2026-09-08 | 1.2997 | -0.05% |
| 2026-09-07 | 1.3004 | +0.46% |
| 2026-09-06 | 1.2945 | -0.04% |
| 2026-09-05 | 1.2951 | -0.02% |
| 2026-09-04 | 1.2953 | +0.10% |
| 2026-09-03 | 1.294 | +0.41% |
| 2026-09-02 | 1.2887 | +0.23% |
| 2026-09-01 | 1.2857 | -0.84% |
| 2026-08-31 | 1.2966 | +0.29% |
| 2026-08-30 | 1.2929 | -0.07% |
| 2026-08-29 | 1.2939 | -0.09% |
| 2026-08-28 | 1.295 | — |
AUD to ANG conversion table
1 AUD1.2584 ANG
5 AUD6.292 ANG
10 AUD12.5841 ANG
25 AUD31.4602 ANG
50 AUD62.9204 ANG
100 AUD125.8408 ANG
500 AUD629.2038 ANG
1,000 AUD1,258.4075 ANG
5,000 AUD6,292.0376 ANG
10,000 AUD12,584.075 ANG
Get the AUD/ANG rate in your app
One GET request returns the latest AUD → ANG 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/ANG"fetch('https://rate-api.com/api/v1/pair/AUD/ANG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} ANG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/ANG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} ANG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/ANG');
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']} ANG\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "ANG"
},
"rate": 1.2584,
"timestamp": 1790429292,
"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
ANG to AUDNetherlands Antillean Guilder → Australian Dollar0.79466Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.