Convert AUD to VES
Australian Dollar → Venezuelan Bolívar
1 AUD = 599.89552 VES(1 VES = 0.00166696 AUD)
Currency converter
1 AUD =
599.8955 VES
AUD to VES: last 30 days
Over the last 30 days, 1 AUD traded between 567.073 and 605.2472 VES, averaging 588.8016 VES. The AUD/VES rate is up 5.50% since 2026-08-28.
- 30-day high
- 605.2472
- 2026-09-21
- 30-day low
- 567.073
- 2026-08-31
- 30-day average
- 588.8016
- Days with data: 30
- 30-day change
- +5.50%
- since 2026-08-28
605.2472
567.0732026-08-28 → 2026-09-26
| Date | 1 AUD in VES | Daily change |
|---|---|---|
| 2026-09-26 | 599.8955 | 0.00% |
| 2026-09-25 | 599.8955 | +0.11% |
| 2026-09-24 | 599.2172 | -0.46% |
| 2026-09-23 | 601.9593 | -0.46% |
| 2026-09-22 | 604.7644 | -0.08% |
| 2026-09-21 | 605.2472 | +0.31% |
| 2026-09-20 | 603.3505 | -0.03% |
| 2026-09-19 | 603.5024 | +0.26% |
| 2026-09-18 | 601.9613 | +0.03% |
| 2026-09-17 | 601.7574 | +0.65% |
| 2026-09-16 | 597.8528 | +0.18% |
| 2026-09-15 | 596.7784 | +1.24% |
| 2026-09-14 | 589.4971 | -1.05% |
| 2026-09-13 | 595.728 | -0.58% |
| 2026-09-12 | 599.1998 | +1.76% |
| Date | 1 AUD in VES | Daily change |
|---|---|---|
| 2026-09-11 | 588.8138 | +0.12% |
| 2026-09-10 | 588.0867 | -0.19% |
| 2026-09-09 | 589.2249 | +0.91% |
| 2026-09-08 | 583.8857 | +0.05% |
| 2026-09-07 | 583.5816 | +0.50% |
| 2026-09-06 | 580.6812 | -0.02% |
| 2026-09-05 | 580.7993 | +0.39% |
| 2026-09-04 | 578.5562 | +0.40% |
| 2026-09-03 | 576.2776 | +0.80% |
| 2026-09-02 | 571.7087 | +0.56% |
| 2026-09-01 | 568.5333 | +0.26% |
| 2026-08-31 | 567.073 | -0.28% |
| 2026-08-30 | 568.6861 | -0.04% |
| 2026-08-29 | 568.9033 | +0.05% |
| 2026-08-28 | 568.6285 | — |
AUD to VES conversion table
1 AUD599.8955 VES
5 AUD2,999.4776 VES
10 AUD5,998.9552 VES
25 AUD14,997.388 VES
50 AUD29,994.776 VES
100 AUD59,989.552 VES
500 AUD299,947.76 VES
1,000 AUD599,895.52 VES
5,000 AUD2,999,477.6 VES
10,000 AUD5,998,955.2 VES
Get the AUD/VES rate in your app
One GET request returns the latest AUD → VES 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/VES"fetch('https://rate-api.com/api/v1/pair/AUD/VES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} VES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/VES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} VES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/VES');
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']} VES\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "VES"
},
"rate": 599.8955,
"timestamp": 1790429289,
"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
VES to AUDVenezuelan Bolívar → Australian Dollar0.001667Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.