Convert EUR to THB
Euro → Thai Baht
1 EUR = 38.023 THB(1 THB = 0.0262999 EUR)
Currency converter
1 EUR =
38.023 THB
EUR to THB: last 30 days
Over the last 30 days, 1 EUR traded between 37.987 and 38.5543 THB, averaging 38.2707 THB. The EUR/THB rate is down 0.90% since 2026-08-28.
- 30-day high
- 38.5543
- 2026-09-01
- 30-day low
- 37.987
- 2026-09-23
- 30-day average
- 38.2707
- Days with data: 30
- 30-day change
- -0.90%
- since 2026-08-28
38.5543
37.9872026-08-28 → 2026-09-26
| Date | 1 EUR in THB | Daily change |
|---|---|---|
| 2026-09-26 | 38.023 | 0.00% |
| 2026-09-25 | 38.023 | -0.09% |
| 2026-09-24 | 38.057 | +0.18% |
| 2026-09-23 | 37.987 | -0.00% |
| 2026-09-22 | 37.9885 | -0.52% |
| 2026-09-21 | 38.1871 | -0.10% |
| 2026-09-20 | 38.2248 | 0.00% |
| 2026-09-19 | 38.2248 | 0.00% |
| 2026-09-18 | 38.2248 | -0.03% |
| 2026-09-17 | 38.2377 | -0.32% |
| 2026-09-16 | 38.3604 | -0.15% |
| 2026-09-15 | 38.4189 | +0.03% |
| 2026-09-14 | 38.4069 | +0.20% |
| 2026-09-13 | 38.3291 | 0.00% |
| 2026-09-12 | 38.3291 | 0.00% |
| Date | 1 EUR in THB | Daily change |
|---|---|---|
| 2026-09-11 | 38.3291 | +0.01% |
| 2026-09-10 | 38.3271 | +0.05% |
| 2026-09-09 | 38.306 | +0.21% |
| 2026-09-08 | 38.2275 | -0.01% |
| 2026-09-07 | 38.2304 | -0.08% |
| 2026-09-06 | 38.2595 | 0.00% |
| 2026-09-05 | 38.2595 | 0.00% |
| 2026-09-04 | 38.2595 | -0.14% |
| 2026-09-03 | 38.3119 | -0.41% |
| 2026-09-02 | 38.4678 | -0.22% |
| 2026-09-01 | 38.5543 | +0.25% |
| 2026-08-31 | 38.458 | +0.23% |
| 2026-08-30 | 38.3693 | 0.00% |
| 2026-08-29 | 38.3693 | 0.00% |
| 2026-08-28 | 38.3693 | — |
EUR to THB conversion table
1 EUR38.023 THB
5 EUR190.115 THB
10 EUR380.23 THB
25 EUR950.575 THB
50 EUR1,901.15 THB
100 EUR3,802.3 THB
500 EUR19,011.5 THB
1,000 EUR38,023 THB
5,000 EUR190,115 THB
10,000 EUR380,230 THB
Get the EUR/THB rate in your app
One GET request returns the latest EUR → THB 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/THB"fetch('https://rate-api.com/api/v1/pair/EUR/THB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} THB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/THB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} THB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/THB');
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']} THB\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "THB"
},
"rate": 38.023,
"timestamp": 1790429346,
"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
THB to EURThai Baht → Euro0.0263Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.