Convert USD to THB
US Dollar → Thai Baht
1 USD = 33.344734 THB(1 THB = 0.0299897 USD)
Currency converter
1 USD =
33.3447 THB
USD to THB: last 30 days
Over the last 30 days, 1 USD traded between 32.875 and 33.4803 THB, averaging 33.138 THB. The USD/THB rate is up 1.18% since 2026-08-28.
- 30-day high
- 33.4803
- 2026-09-24
- 30-day low
- 32.875
- 2026-09-09
- 30-day average
- 33.138
- Days with data: 30
- 30-day change
- +1.18%
- since 2026-08-28
33.4803
32.8752026-08-28 → 2026-09-26
| Date | 1 USD in THB | Daily change |
|---|---|---|
| 2026-09-26 | 33.3447 | 0.00% |
| 2026-09-25 | 33.3447 | -0.40% |
| 2026-09-24 | 33.4803 | +0.57% |
| 2026-09-23 | 33.2898 | +0.45% |
| 2026-09-22 | 33.14 | -0.29% |
| 2026-09-21 | 33.235 | -0.36% |
| 2026-09-20 | 33.355 | 0.00% |
| 2026-09-19 | 33.355 | 0.00% |
| 2026-09-18 | 33.355 | +0.15% |
| 2026-09-17 | 33.305 | +0.17% |
| 2026-09-16 | 33.25 | -0.14% |
| 2026-09-15 | 33.295 | +0.14% |
| 2026-09-14 | 33.25 | +0.56% |
| 2026-09-13 | 33.065 | 0.00% |
| 2026-09-12 | 33.065 | 0.00% |
| Date | 1 USD in THB | Daily change |
|---|---|---|
| 2026-09-11 | 33.065 | +0.21% |
| 2026-09-10 | 32.995 | +0.37% |
| 2026-09-09 | 32.875 | -0.12% |
| 2026-09-08 | 32.915 | +0.06% |
| 2026-09-07 | 32.895 | -0.08% |
| 2026-09-06 | 32.92 | 0.00% |
| 2026-09-05 | 32.92 | 0.00% |
| 2026-09-04 | 32.92 | -0.20% |
| 2026-09-03 | 32.985 | -0.72% |
| 2026-09-02 | 33.225 | -0.12% |
| 2026-09-01 | 33.265 | +0.30% |
| 2026-08-31 | 33.165 | +0.64% |
| 2026-08-30 | 32.955 | 0.00% |
| 2026-08-29 | 32.955 | 0.00% |
| 2026-08-28 | 32.955 | — |
USD to THB conversion table
1 USD33.3447 THB
5 USD166.7237 THB
10 USD333.4473 THB
25 USD833.6184 THB
50 USD1,667.2367 THB
100 USD3,334.4734 THB
500 USD16,672.367 THB
1,000 USD33,344.734 THB
5,000 USD166,723.67 THB
10,000 USD333,447.34 THB
Get the USD/THB rate in your app
One GET request returns the latest USD → 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/USD/THB"fetch('https://rate-api.com/api/v1/pair/USD/THB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} THB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/THB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} THB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/THB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} THB\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "THB"
},
"rate": 33.3447,
"timestamp": 1790429288,
"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 USDThai Baht → US Dollar0.02999Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.