Convert ANG to AUD
Netherlands Antillean Guilder → Australian Dollar
1 ANG = 0.794655 AUD(1 AUD = 1.258408 ANG)
Currency converter
1 ANG =
0.79466 AUD
ANG to AUD: last 30 days
Over the last 30 days, 1 ANG traded between 0.769 and 0.79506 AUD, averaging 0.77766 AUD. The ANG/AUD rate is up 2.91% since 2026-08-28.
- 30-day high
- 0.79506
- 2026-09-24
- 30-day low
- 0.769
- 2026-09-07
- 30-day average
- 0.77766
- Days with data: 30
- 30-day change
- +2.91%
- since 2026-08-28
0.79506
0.7692026-08-28 → 2026-09-26
| Date | 1 ANG in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.79466 | 0.00% |
| 2026-09-25 | 0.79466 | -0.05% |
| 2026-09-24 | 0.79506 | +0.58% |
| 2026-09-23 | 0.79048 | +1.28% |
| 2026-09-22 | 0.78051 | +0.29% |
| 2026-09-21 | 0.77822 | -0.41% |
| 2026-09-20 | 0.78145 | +0.14% |
| 2026-09-19 | 0.78038 | -0.52% |
| 2026-09-18 | 0.78448 | +1.02% |
| 2026-09-17 | 0.77659 | -0.20% |
| 2026-09-16 | 0.77812 | -0.14% |
| 2026-09-15 | 0.77921 | +0.14% |
| 2026-09-14 | 0.77811 | +0.28% |
| 2026-09-13 | 0.77592 | +0.01% |
| 2026-09-12 | 0.77585 | +0.38% |
| Date | 1 ANG in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.77293 | +0.06% |
| 2026-09-10 | 0.77245 | +0.39% |
| 2026-09-09 | 0.76946 | +0.01% |
| 2026-09-08 | 0.76938 | +0.05% |
| 2026-09-07 | 0.769 | -0.45% |
| 2026-09-06 | 0.77251 | +0.04% |
| 2026-09-05 | 0.77216 | +0.02% |
| 2026-09-04 | 0.77205 | -0.10% |
| 2026-09-03 | 0.77282 | -0.41% |
| 2026-09-02 | 0.77599 | -0.23% |
| 2026-09-01 | 0.77776 | +0.85% |
| 2026-08-31 | 0.77123 | -0.28% |
| 2026-08-30 | 0.77343 | +0.07% |
| 2026-08-29 | 0.77287 | +0.09% |
| 2026-08-28 | 0.77218 | — |
ANG to AUD conversion table
1 ANG0.79466 AUD
5 ANG3.9733 AUD
10 ANG7.9466 AUD
25 ANG19.8664 AUD
50 ANG39.7328 AUD
100 ANG79.4655 AUD
500 ANG397.3276 AUD
1,000 ANG794.6551 AUD
5,000 ANG3,973.2757 AUD
10,000 ANG7,946.5514 AUD
Get the ANG/AUD rate in your app
One GET request returns the latest ANG → AUD 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/ANG/AUD"fetch('https://rate-api.com/api/v1/pair/ANG/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ANG = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ANG/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ANG = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ANG/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ANG = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "ANG",
"to": "AUD"
},
"rate": 0.7947,
"timestamp": 1790437534,
"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
AUD to ANGAustralian Dollar → Netherlands Antillean Guilder1.2584Convert ANG to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.