Convert AUD to VND
Australian Dollar → Vietnamese Dong
1 AUD = 18,264.839 VND(1 VND = 0.00005475 AUD)
Currency converter
1 AUD =
18,264.839 VND
AUD to VND: last 30 days
Over the last 30 days, 1 AUD traded between 18,264.839 and 18,797.649 VND, averaging 18,596.464 VND. The AUD/VND rate is down 2.56% since 2026-08-28.
- 30-day high
- 18,797.649
- 2026-09-07
- 30-day low
- 18,264.839
- 2026-09-25
- 30-day average
- 18,596.464
- Days with data: 30
- 30-day change
- -2.56%
- since 2026-08-28
18,797.649
18,264.8392026-08-28 → 2026-09-26
| Date | 1 AUD in VND | Daily change |
|---|---|---|
| 2026-09-26 | 18,264.839 | 0.00% |
| 2026-09-25 | 18,264.839 | -0.07% |
| 2026-09-24 | 18,277.937 | -0.36% |
| 2026-09-23 | 18,344.374 | -0.66% |
| 2026-09-22 | 18,466.261 | -0.57% |
| 2026-09-21 | 18,572.921 | +0.26% |
| 2026-09-20 | 18,523.958 | +0.06% |
| 2026-09-19 | 18,513.071 | +0.02% |
| 2026-09-18 | 18,509.783 | +0.10% |
| 2026-09-17 | 18,491.342 | -0.27% |
| 2026-09-16 | 18,542.028 | -0.03% |
| 2026-09-15 | 18,548.057 | +0.26% |
| 2026-09-14 | 18,500.747 | -0.51% |
| 2026-09-13 | 18,594.821 | +0.35% |
| 2026-09-12 | 18,530.052 | -0.30% |
| Date | 1 AUD in VND | Daily change |
|---|---|---|
| 2026-09-11 | 18,586.306 | -0.23% |
| 2026-09-10 | 18,628.711 | -0.73% |
| 2026-09-09 | 18,765.731 | +0.04% |
| 2026-09-08 | 18,758.64 | -0.21% |
| 2026-09-07 | 18,797.649 | +0.07% |
| 2026-09-06 | 18,785.134 | +0.03% |
| 2026-09-05 | 18,778.943 | -0.06% |
| 2026-09-04 | 18,790.615 | +0.02% |
| 2026-09-03 | 18,785.999 | +0.72% |
| 2026-09-02 | 18,650.882 | +0.06% |
| 2026-09-01 | 18,639.216 | -0.24% |
| 2026-08-31 | 18,683.534 | -0.43% |
| 2026-08-30 | 18,763.32 | -0.14% |
| 2026-08-29 | 18,789.216 | +0.24% |
| 2026-08-28 | 18,744.997 | — |
AUD to VND conversion table
1 AUD18,264.839 VND
5 AUD91,324.195 VND
10 AUD182,648.39 VND
25 AUD456,620.98 VND
50 AUD913,241.95 VND
100 AUD1,826,483.9 VND
500 AUD9,132,419.5 VND
1,000 AUD18,264,839 VND
5,000 AUD91,324,195 VND
10,000 AUD182,648,391 VND
Get the AUD/VND rate in your app
One GET request returns the latest AUD → VND 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/VND"fetch('https://rate-api.com/api/v1/pair/AUD/VND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} VND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/VND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} VND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/VND');
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']} VND\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "VND"
},
"rate": 18264.8391,
"timestamp": 1790429312,
"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
VND to AUDVietnamese Dong → Australian Dollar0.00005475Convert AUD to other currencies
Convert other currencies to VND
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.