Convert THB to EUR
Thai Baht → Euro
1 THB = 0.0262999 EUR(1 EUR = 38.023 THB)
Currency converter
1 THB =
0.0263 EUR
THB to EUR: last 30 days
Over the last 30 days, 1 THB traded between 0.025937 and 0.026325 EUR, averaging 0.02613 EUR. The THB/EUR rate is up 0.91% since 2026-08-28.
- 30-day high
- 0.026325
- 2026-09-23
- 30-day low
- 0.025937
- 2026-09-01
- 30-day average
- 0.02613
- Days with data: 30
- 30-day change
- +0.91%
- since 2026-08-28
0.026325
0.0259372026-08-28 → 2026-09-26
| Date | 1 THB in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.0263 | 0.00% |
| 2026-09-25 | 0.0263 | +0.09% |
| 2026-09-24 | 0.026276 | -0.18% |
| 2026-09-23 | 0.026325 | +0.00% |
| 2026-09-22 | 0.026324 | +0.52% |
| 2026-09-21 | 0.026187 | +0.10% |
| 2026-09-20 | 0.026161 | 0.00% |
| 2026-09-19 | 0.026161 | 0.00% |
| 2026-09-18 | 0.026161 | +0.03% |
| 2026-09-17 | 0.026152 | +0.32% |
| 2026-09-16 | 0.026069 | +0.15% |
| 2026-09-15 | 0.026029 | -0.03% |
| 2026-09-14 | 0.026037 | -0.20% |
| 2026-09-13 | 0.02609 | 0.00% |
| 2026-09-12 | 0.02609 | 0.00% |
| Date | 1 THB in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.02609 | -0.01% |
| 2026-09-10 | 0.026091 | -0.05% |
| 2026-09-09 | 0.026106 | -0.21% |
| 2026-09-08 | 0.026159 | +0.01% |
| 2026-09-07 | 0.026157 | +0.08% |
| 2026-09-06 | 0.026137 | 0.00% |
| 2026-09-05 | 0.026137 | 0.00% |
| 2026-09-04 | 0.026137 | +0.14% |
| 2026-09-03 | 0.026102 | +0.41% |
| 2026-09-02 | 0.025996 | +0.22% |
| 2026-09-01 | 0.025937 | -0.25% |
| 2026-08-31 | 0.026002 | -0.23% |
| 2026-08-30 | 0.026063 | 0.00% |
| 2026-08-29 | 0.026063 | 0.00% |
| 2026-08-28 | 0.026063 | — |
THB to EUR conversion table
1 THB0.0263 EUR
5 THB0.1315 EUR
10 THB0.263 EUR
25 THB0.6575 EUR
50 THB1.315 EUR
100 THB2.63 EUR
500 THB13.1499 EUR
1,000 THB26.2999 EUR
5,000 THB131.4994 EUR
10,000 THB262.9987 EUR
Get the THB/EUR rate in your app
One GET request returns the latest THB → 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/THB/EUR"fetch('https://rate-api.com/api/v1/pair/THB/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 THB = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/THB/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 THB = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/THB/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 THB = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "THB",
"to": "EUR"
},
"rate": 0.0263,
"timestamp": 1790432097,
"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 THBEuro → Thai Baht38.023Convert THB to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.