Convert AUD to TVD
Australian Dollar → Tuvaluan Dollar
1 AUD = 1 TVD(1 TVD = 1 AUD)
Currency converter
1 AUD =
1 TVD
AUD to TVD: last 30 days
Over the last 30 days, 1 AUD traded between 0.99525 and 1.0047 TVD, averaging 1.0002 TVD. The AUD/TVD rate is up 0.06% since 2026-08-28.
- 30-day high
- 1.0047
- 2026-08-29
- 30-day low
- 0.99525
- 2026-09-10
- 30-day average
- 1.0002
- Days with data: 30
- 30-day change
- +0.06%
- since 2026-08-28
1.0047
0.995252026-08-28 → 2026-09-26
| Date | 1 AUD in TVD | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | +0.16% |
| 2026-09-22 | 0.99837 | -0.27% |
| 2026-09-21 | 1.0011 | +0.19% |
| 2026-09-20 | 0.9992 | -0.00% |
| 2026-09-19 | 0.99922 | -0.19% |
| 2026-09-18 | 1.0011 | +0.03% |
| 2026-09-17 | 1.0009 | +0.02% |
| 2026-09-16 | 1.0006 | -0.02% |
| 2026-09-15 | 1.0008 | +0.37% |
| 2026-09-14 | 0.99717 | -0.31% |
| 2026-09-13 | 1.0003 | +0.00% |
| 2026-09-12 | 1.0002 | -0.22% |
| Date | 1 AUD in TVD | Daily change |
|---|---|---|
| 2026-09-11 | 1.0025 | +0.72% |
| 2026-09-10 | 0.99525 | -0.49% |
| 2026-09-09 | 1.0001 | +0.02% |
| 2026-09-08 | 0.99989 | -0.16% |
| 2026-09-07 | 1.0015 | +0.16% |
| 2026-09-06 | 0.99994 | +0.00% |
| 2026-09-05 | 0.99992 | +0.06% |
| 2026-09-04 | 0.99937 | -0.40% |
| 2026-09-03 | 1.0033 | +0.22% |
| 2026-09-02 | 1.0012 | +0.47% |
| 2026-09-01 | 0.99646 | -0.30% |
| 2026-08-31 | 0.99945 | -0.51% |
| 2026-08-30 | 1.0046 | -0.01% |
| 2026-08-29 | 1.0047 | +0.53% |
| 2026-08-28 | 0.99943 | — |
AUD to TVD conversion table
1 AUD1 TVD
5 AUD5 TVD
10 AUD10 TVD
25 AUD25 TVD
50 AUD50 TVD
100 AUD100 TVD
500 AUD500 TVD
1,000 AUD1,000 TVD
5,000 AUD5,000 TVD
10,000 AUD10,000 TVD
Get the AUD/TVD rate in your app
One GET request returns the latest AUD → TVD 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/TVD"fetch('https://rate-api.com/api/v1/pair/AUD/TVD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} TVD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/TVD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} TVD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/TVD');
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']} TVD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "TVD"
},
"rate": 1,
"timestamp": 1790429344,
"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
TVD to AUDTuvaluan Dollar → Australian Dollar1Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.