Convert TND to EUR
Tunisian Dinar → Euro
1 TND = 0.296504 EUR(1 EUR = 3.372639 TND)
Currency converter
1 TND =
0.2965 EUR
TND to EUR: last 30 days
Over the last 30 days, 1 TND traded between 0.29403 and 0.29961 EUR, averaging 0.29657 EUR. The TND/EUR rate is up 0.25% since 2026-08-28.
- 30-day high
- 0.29961
- 2026-09-18
- 30-day low
- 0.29403
- 2026-08-29
- 30-day average
- 0.29657
- Days with data: 30
- 30-day change
- +0.25%
- since 2026-08-28
0.29961
0.294032026-08-28 → 2026-09-26
| Date | 1 TND in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.2965 | 0.00% |
| 2026-09-25 | 0.2965 | -0.40% |
| 2026-09-24 | 0.2977 | +0.23% |
| 2026-09-23 | 0.29703 | +0.26% |
| 2026-09-22 | 0.29625 | +0.24% |
| 2026-09-21 | 0.29553 | -0.34% |
| 2026-09-20 | 0.29655 | -0.08% |
| 2026-09-19 | 0.29678 | -0.94% |
| 2026-09-18 | 0.29961 | +0.83% |
| 2026-09-17 | 0.29713 | -0.05% |
| 2026-09-16 | 0.29728 | +0.56% |
| 2026-09-15 | 0.29563 | -1.07% |
| 2026-09-14 | 0.29883 | +0.29% |
| 2026-09-13 | 0.29797 | +0.07% |
| 2026-09-12 | 0.29775 | +0.34% |
| Date | 1 TND in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.29673 | -0.01% |
| 2026-09-10 | 0.29677 | +0.24% |
| 2026-09-09 | 0.29605 | -0.25% |
| 2026-09-08 | 0.29679 | +0.61% |
| 2026-09-07 | 0.29498 | -0.14% |
| 2026-09-06 | 0.29538 | -0.20% |
| 2026-09-05 | 0.29598 | -0.03% |
| 2026-09-04 | 0.29608 | +0.14% |
| 2026-09-03 | 0.29566 | -0.07% |
| 2026-09-02 | 0.29587 | -0.16% |
| 2026-09-01 | 0.29634 | -0.97% |
| 2026-08-31 | 0.29923 | +1.60% |
| 2026-08-30 | 0.29453 | +0.17% |
| 2026-08-29 | 0.29403 | -0.59% |
| 2026-08-28 | 0.29578 | — |
TND to EUR conversion table
1 TND0.2965 EUR
5 TND1.4825 EUR
10 TND2.965 EUR
25 TND7.4126 EUR
50 TND14.8252 EUR
100 TND29.6504 EUR
500 TND148.2519 EUR
1,000 TND296.5037 EUR
5,000 TND1,482.5185 EUR
10,000 TND2,965.0371 EUR
Get the TND/EUR rate in your app
One GET request returns the latest TND → EUR 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/TND/EUR"fetch('https://rate-api.com/api/v1/pair/TND/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 TND = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/TND/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 TND = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/TND/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 TND = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "TND",
"to": "EUR"
},
"rate": 0.2965,
"timestamp": 1790437643,
"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
EUR to TNDEuro → Tunisian Dinar3.3726Convert TND to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.