Convert TVD to AUD
Tuvaluan Dollar → Australian Dollar
1 TVD = 1 AUD(1 AUD = 1 TVD)
Currency converter
1 TVD =
1 AUD
TVD to AUD: last 30 days
Over the last 30 days, 1 TVD traded between 0.99534 and 1.0048 AUD, averaging 0.99978 AUD. The TVD/AUD rate is down 0.06% since 2026-08-28.
- 30-day high
- 1.0048
- 2026-09-10
- 30-day low
- 0.99534
- 2026-08-29
- 30-day average
- 0.99978
- Days with data: 30
- 30-day change
- -0.06%
- since 2026-08-28
1.0048
0.995342026-08-28 → 2026-09-26
| Date | 1 TVD in AUD | 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 | 1.0016 | +0.27% |
| 2026-09-21 | 0.9989 | -0.19% |
| 2026-09-20 | 1.0008 | +0.00% |
| 2026-09-19 | 1.0008 | +0.19% |
| 2026-09-18 | 0.99886 | -0.03% |
| 2026-09-17 | 0.99912 | -0.02% |
| 2026-09-16 | 0.99936 | +0.02% |
| 2026-09-15 | 0.99918 | -0.36% |
| 2026-09-14 | 1.0028 | +0.31% |
| 2026-09-13 | 0.99973 | -0.00% |
| 2026-09-12 | 0.99976 | +0.22% |
| Date | 1 TVD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.99754 | -0.72% |
| 2026-09-10 | 1.0048 | +0.49% |
| 2026-09-09 | 0.99987 | -0.02% |
| 2026-09-08 | 1.0001 | +0.16% |
| 2026-09-07 | 0.99851 | -0.16% |
| 2026-09-06 | 1.0001 | -0.00% |
| 2026-09-05 | 1.0001 | -0.06% |
| 2026-09-04 | 1.0006 | +0.40% |
| 2026-09-03 | 0.99666 | -0.22% |
| 2026-09-02 | 0.99881 | -0.47% |
| 2026-09-01 | 1.0036 | +0.30% |
| 2026-08-31 | 1.0005 | +0.51% |
| 2026-08-30 | 0.99542 | +0.01% |
| 2026-08-29 | 0.99534 | -0.52% |
| 2026-08-28 | 1.0006 | — |
TVD to AUD conversion table
1 TVD1 AUD
5 TVD5 AUD
10 TVD10 AUD
25 TVD25 AUD
50 TVD50 AUD
100 TVD100 AUD
500 TVD500 AUD
1,000 TVD1,000 AUD
5,000 TVD5,000 AUD
10,000 TVD10,000 AUD
Get the TVD/AUD rate in your app
One GET request returns the latest TVD → 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/TVD/AUD"fetch('https://rate-api.com/api/v1/pair/TVD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TVD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TVD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TVD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TVD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TVD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "TVD",
"to": "AUD"
},
"rate": 1,
"timestamp": 1790432092,
"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 TVDAustralian Dollar → Tuvaluan Dollar1Convert TVD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.