Convert THB to USD
Thai Baht → US Dollar
1 THB = 0.0299897 USD(1 USD = 33.344734 THB)
Currency converter
1 THB =
0.02999 USD
THB to USD: last 30 days
Over the last 30 days, 1 THB traded between 0.029868 and 0.030418 USD, averaging 0.030178 USD. The THB/USD rate is down 1.17% since 2026-08-28.
- 30-day high
- 0.030418
- 2026-09-09
- 30-day low
- 0.029868
- 2026-09-24
- 30-day average
- 0.030178
- Days with data: 30
- 30-day change
- -1.17%
- since 2026-08-28
0.030418
0.0298682026-08-28 → 2026-09-26
| Date | 1 THB in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.02999 | 0.00% |
| 2026-09-25 | 0.02999 | +0.41% |
| 2026-09-24 | 0.029868 | -0.57% |
| 2026-09-23 | 0.030039 | -0.45% |
| 2026-09-22 | 0.030175 | +0.29% |
| 2026-09-21 | 0.030089 | +0.36% |
| 2026-09-20 | 0.029981 | 0.00% |
| 2026-09-19 | 0.029981 | 0.00% |
| 2026-09-18 | 0.029981 | -0.15% |
| 2026-09-17 | 0.030026 | -0.17% |
| 2026-09-16 | 0.030075 | +0.14% |
| 2026-09-15 | 0.030035 | -0.14% |
| 2026-09-14 | 0.030075 | -0.56% |
| 2026-09-13 | 0.030243 | 0.00% |
| 2026-09-12 | 0.030243 | 0.00% |
| Date | 1 THB in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.030243 | -0.21% |
| 2026-09-10 | 0.030308 | -0.36% |
| 2026-09-09 | 0.030418 | +0.12% |
| 2026-09-08 | 0.030381 | -0.06% |
| 2026-09-07 | 0.0304 | +0.08% |
| 2026-09-06 | 0.030377 | 0.00% |
| 2026-09-05 | 0.030377 | 0.00% |
| 2026-09-04 | 0.030377 | +0.20% |
| 2026-09-03 | 0.030317 | +0.73% |
| 2026-09-02 | 0.030098 | +0.12% |
| 2026-09-01 | 0.030062 | -0.30% |
| 2026-08-31 | 0.030152 | -0.63% |
| 2026-08-30 | 0.030344 | 0.00% |
| 2026-08-29 | 0.030344 | 0.00% |
| 2026-08-28 | 0.030344 | — |
THB to USD conversion table
1 THB0.02999 USD
5 THB0.14995 USD
10 THB0.2999 USD
25 THB0.74974 USD
50 THB1.4995 USD
100 THB2.999 USD
500 THB14.9949 USD
1,000 THB29.9897 USD
5,000 THB149.9487 USD
10,000 THB299.8974 USD
Get the THB/USD rate in your app
One GET request returns the latest THB → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/THB/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 THB = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/THB/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 THB = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/THB/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "THB",
"to": "USD"
},
"rate": 0.03,
"timestamp": 1790432041,
"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
USD to THBUS Dollar → Thai Baht33.3447Convert THB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.