Convert VND to AUD
Vietnamese Dong → Australian Dollar
1 VND = 0.00005475 AUD(1 AUD = 18,264.839 VND)
Currency converter
1 VND =
0.00005475 AUD
VND to AUD: last 30 days
Over the last 30 days, 1 VND traded between 0.000053198 and 0.00005475 AUD, averaging 0.000053778 AUD. The VND/AUD rate is up 2.63% since 2026-08-28.
- 30-day high
- 0.00005475
- 2026-09-25
- 30-day low
- 0.000053198
- 2026-09-07
- 30-day average
- 0.000053778
- Days with data: 30
- 30-day change
- +2.63%
- since 2026-08-28
0.00005475
0.0000531982026-08-28 → 2026-09-26
| Date | 1 VND in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00005475 | 0.00% |
| 2026-09-25 | 0.00005475 | +0.07% |
| 2026-09-24 | 0.000054711 | +0.36% |
| 2026-09-23 | 0.000054513 | +0.66% |
| 2026-09-22 | 0.000054153 | +0.58% |
| 2026-09-21 | 0.000053842 | -0.26% |
| 2026-09-20 | 0.000053984 | -0.06% |
| 2026-09-19 | 0.000054016 | -0.02% |
| 2026-09-18 | 0.000054025 | -0.10% |
| 2026-09-17 | 0.000054079 | +0.27% |
| 2026-09-16 | 0.000053932 | +0.03% |
| 2026-09-15 | 0.000053914 | -0.26% |
| 2026-09-14 | 0.000054052 | +0.51% |
| 2026-09-13 | 0.000053778 | -0.35% |
| 2026-09-12 | 0.000053966 | +0.30% |
| Date | 1 VND in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.000053803 | +0.23% |
| 2026-09-10 | 0.000053681 | +0.74% |
| 2026-09-09 | 0.000053289 | -0.04% |
| 2026-09-08 | 0.000053309 | +0.21% |
| 2026-09-07 | 0.000053198 | -0.07% |
| 2026-09-06 | 0.000053234 | -0.03% |
| 2026-09-05 | 0.000053251 | +0.06% |
| 2026-09-04 | 0.000053218 | -0.02% |
| 2026-09-03 | 0.000053231 | -0.72% |
| 2026-09-02 | 0.000053617 | -0.06% |
| 2026-09-01 | 0.00005365 | +0.24% |
| 2026-08-31 | 0.000053523 | +0.43% |
| 2026-08-30 | 0.000053295 | +0.14% |
| 2026-08-29 | 0.000053222 | -0.24% |
| 2026-08-28 | 0.000053348 | — |
VND to AUD conversion table
1 VND0.00005475 AUD
5 VND0.00027375 AUD
10 VND0.0005475 AUD
25 VND0.0013688 AUD
50 VND0.0027375 AUD
100 VND0.005475 AUD
500 VND0.027375 AUD
1,000 VND0.05475 AUD
5,000 VND0.27375 AUD
10,000 VND0.5475 AUD
Get the VND/AUD rate in your app
One GET request returns the latest VND → 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/VND/AUD?precision=6"fetch('https://rate-api.com/api/v1/pair/VND/AUD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 VND = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/VND/AUD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 VND = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/VND/AUD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 VND = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "VND",
"to": "AUD"
},
"rate": 5.5e-5,
"timestamp": 1790432072,
"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 VNDAustralian Dollar → Vietnamese Dong18,264.839Convert VND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.