Convert EUR to TVD
Euro → Tuvaluan Dollar
1 EUR = 1.622 TVD(1 TVD = 0.616523 EUR)
Currency converter
1 EUR =
1.622 TVD
EUR to TVD: last 30 days
Over the last 30 days, 1 EUR traded between 1.6083 and 1.6258 TVD, averaging 1.616 TVD. The EUR/TVD rate is up 0.29% since 2026-08-28.
- 30-day high
- 1.6258
- 2026-08-29
- 30-day low
- 1.6083
- 2026-09-20
- 30-day average
- 1.616
- Days with data: 30
- 30-day change
- +0.29%
- since 2026-08-28
1.6258
1.60832026-08-28 → 2026-09-26
| Date | 1 EUR in TVD | Daily change |
|---|---|---|
| 2026-09-26 | 1.622 | 0.00% |
| 2026-09-25 | 1.622 | +0.27% |
| 2026-09-24 | 1.6177 | +0.19% |
| 2026-09-23 | 1.6146 | +0.32% |
| 2026-09-22 | 1.6095 | -0.12% |
| 2026-09-21 | 1.6115 | +0.20% |
| 2026-09-20 | 1.6083 | -0.00% |
| 2026-09-19 | 1.6083 | -0.19% |
| 2026-09-18 | 1.6114 | -0.24% |
| 2026-09-17 | 1.6153 | -0.21% |
| 2026-09-16 | 1.6186 | -0.13% |
| 2026-09-15 | 1.6207 | +0.32% |
| 2026-09-14 | 1.6156 | -0.06% |
| 2026-09-13 | 1.6166 | +0.00% |
| 2026-09-12 | 1.6165 | -0.22% |
| Date | 1 EUR in TVD | Daily change |
|---|---|---|
| 2026-09-11 | 1.6201 | +0.69% |
| 2026-09-10 | 1.609 | -0.24% |
| 2026-09-09 | 1.613 | +0.21% |
| 2026-09-08 | 1.6096 | -0.23% |
| 2026-09-07 | 1.6133 | +0.00% |
| 2026-09-06 | 1.6133 | +0.00% |
| 2026-09-05 | 1.6132 | +0.06% |
| 2026-09-04 | 1.6124 | -0.48% |
| 2026-09-03 | 1.6201 | -0.10% |
| 2026-09-02 | 1.6218 | +0.28% |
| 2026-09-01 | 1.6172 | -0.06% |
| 2026-08-31 | 1.6183 | -0.46% |
| 2026-08-30 | 1.6257 | -0.01% |
| 2026-08-29 | 1.6258 | +0.53% |
| 2026-08-28 | 1.6173 | — |
EUR to TVD conversion table
1 EUR1.622 TVD
5 EUR8.11 TVD
10 EUR16.22 TVD
25 EUR40.55 TVD
50 EUR81.1 TVD
100 EUR162.2 TVD
500 EUR811 TVD
1,000 EUR1,622 TVD
5,000 EUR8,110 TVD
10,000 EUR16,220 TVD
Get the EUR/TVD rate in your app
One GET request returns the latest EUR → 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/EUR/TVD"fetch('https://rate-api.com/api/v1/pair/EUR/TVD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} TVD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/TVD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} TVD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/TVD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} TVD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "TVD"
},
"rate": 1.622,
"timestamp": 1790437766,
"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 EURTuvaluan Dollar → Euro0.61652Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.