Convert VUV to AUD
Vanuatu Vatu → Australian Dollar
1 VUV = 0.012003 AUD(1 AUD = 83.312472 VUV)
Currency converter
1 VUV =
0.012003 AUD
VUV to AUD: last 30 days
Over the last 30 days, 1 VUV traded between 0.011722 and 0.012017 AUD, averaging 0.011841 AUD. The VUV/AUD rate is up 2.16% since 2026-08-28.
- 30-day high
- 0.012017
- 2026-09-24
- 30-day low
- 0.011722
- 2026-09-09
- 30-day average
- 0.011841
- Days with data: 30
- 30-day change
- +2.16%
- since 2026-08-28
0.012017
0.0117222026-08-28 → 2026-09-26
| Date | 1 VUV in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.012003 | 0.00% |
| 2026-09-25 | 0.012003 | -0.11% |
| 2026-09-24 | 0.012017 | +0.59% |
| 2026-09-23 | 0.011946 | +0.48% |
| 2026-09-22 | 0.011889 | +0.64% |
| 2026-09-21 | 0.011814 | -0.31% |
| 2026-09-20 | 0.011851 | -0.19% |
| 2026-09-19 | 0.011874 | +0.00% |
| 2026-09-18 | 0.011873 | -0.28% |
| 2026-09-17 | 0.011907 | +0.46% |
| 2026-09-16 | 0.011853 | -0.27% |
| 2026-09-15 | 0.011885 | +0.30% |
| 2026-09-14 | 0.01185 | -0.20% |
| 2026-09-13 | 0.011873 | -0.03% |
| 2026-09-12 | 0.011877 | +0.49% |
| Date | 1 VUV in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.011819 | +0.08% |
| 2026-09-10 | 0.01181 | +0.75% |
| 2026-09-09 | 0.011722 | -0.21% |
| 2026-09-08 | 0.011746 | +0.09% |
| 2026-09-07 | 0.011736 | -0.33% |
| 2026-09-06 | 0.011775 | -0.31% |
| 2026-09-05 | 0.011812 | +0.63% |
| 2026-09-04 | 0.011739 | -0.12% |
| 2026-09-03 | 0.011753 | -0.58% |
| 2026-09-02 | 0.011822 | -0.11% |
| 2026-09-01 | 0.011835 | +0.27% |
| 2026-08-31 | 0.011803 | +0.05% |
| 2026-08-30 | 0.011798 | +0.07% |
| 2026-08-29 | 0.011789 | +0.34% |
| 2026-08-28 | 0.011749 | — |
VUV to AUD conversion table
1 VUV0.012003 AUD
5 VUV0.060015 AUD
10 VUV0.12003 AUD
25 VUV0.30008 AUD
50 VUV0.60015 AUD
100 VUV1.2003 AUD
500 VUV6.0015 AUD
1,000 VUV12.003 AUD
5,000 VUV60.015 AUD
10,000 VUV120.0301 AUD
Get the VUV/AUD rate in your app
One GET request returns the latest VUV → 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/VUV/AUD"fetch('https://rate-api.com/api/v1/pair/VUV/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 VUV = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/VUV/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 VUV = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/VUV/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 VUV = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "VUV",
"to": "AUD"
},
"rate": 0.012,
"timestamp": 1790432080,
"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 VUVAustralian Dollar → Vanuatu Vatu83.3125Convert VUV to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.