Convert USD to TVD
US Dollar → Tuvaluan Dollar
1 USD = 1.422433 TVD(1 TVD = 0.703021 USD)
Currency converter
1 USD =
1.4224 TVD
USD to TVD: last 30 days
Over the last 30 days, 1 USD traded between 1.3843 and 1.4232 TVD, averaging 1.3993 TVD. The USD/TVD rate is up 2.40% since 2026-08-28.
- 30-day high
- 1.4232
- 2026-09-24
- 30-day low
- 1.3843
- 2026-09-09
- 30-day average
- 1.3993
- Days with data: 30
- 30-day change
- +2.40%
- since 2026-08-28
1.4232
1.38432026-08-28 → 2026-09-26
| Date | 1 USD in TVD | Daily change |
|---|---|---|
| 2026-09-26 | 1.4224 | 0.00% |
| 2026-09-25 | 1.4224 | -0.05% |
| 2026-09-24 | 1.4232 | +0.58% |
| 2026-09-23 | 1.415 | +0.77% |
| 2026-09-22 | 1.4041 | +0.11% |
| 2026-09-21 | 1.4025 | -0.06% |
| 2026-09-20 | 1.4034 | -0.00% |
| 2026-09-19 | 1.4034 | -0.19% |
| 2026-09-18 | 1.4061 | -0.06% |
| 2026-09-17 | 1.4069 | +0.28% |
| 2026-09-16 | 1.403 | -0.11% |
| 2026-09-15 | 1.4045 | +0.42% |
| 2026-09-14 | 1.3986 | +0.29% |
| 2026-09-13 | 1.3946 | +0.00% |
| 2026-09-12 | 1.3945 | -0.22% |
| Date | 1 USD in TVD | Daily change |
|---|---|---|
| 2026-09-11 | 1.3976 | +0.90% |
| 2026-09-10 | 1.3852 | +0.07% |
| 2026-09-09 | 1.3843 | -0.12% |
| 2026-09-08 | 1.3859 | -0.16% |
| 2026-09-07 | 1.3882 | +0.00% |
| 2026-09-06 | 1.3881 | +0.00% |
| 2026-09-05 | 1.3881 | +0.06% |
| 2026-09-04 | 1.3873 | -0.54% |
| 2026-09-03 | 1.3949 | -0.42% |
| 2026-09-02 | 1.4008 | +0.39% |
| 2026-09-01 | 1.3953 | -0.01% |
| 2026-08-31 | 1.3955 | -0.05% |
| 2026-08-30 | 1.3963 | -0.01% |
| 2026-08-29 | 1.3964 | +0.53% |
| 2026-08-28 | 1.3891 | — |
USD to TVD conversion table
1 USD1.4224 TVD
5 USD7.1122 TVD
10 USD14.2243 TVD
25 USD35.5608 TVD
50 USD71.1216 TVD
100 USD142.2433 TVD
500 USD711.2164 TVD
1,000 USD1,422.4327 TVD
5,000 USD7,112.1635 TVD
10,000 USD14,224.327 TVD
Get the USD/TVD rate in your app
One GET request returns the latest USD → 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/USD/TVD"fetch('https://rate-api.com/api/v1/pair/USD/TVD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} TVD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/TVD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} TVD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/TVD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} TVD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "TVD"
},
"rate": 1.4224,
"timestamp": 1790429347,
"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 USDTuvaluan Dollar → US Dollar0.70302Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.