Bank of Thailand Exchange Rate API

Official Bank of Thailand rates for 10 Sept 2026: 1 USD = 32.745 THB, 1 EUR = 37.92 THB. All 48 currencies published, history back to 2002. Free JSON API for tax, audits, and compliant invoicing.

Thailand flagBank of Thailand publishes official daily exchange rates — 48 currencies against the THB — and this API serves them as JSON, with history back to 2002. The latest table is on every plan. Get your API key.

About Bank of Thailand

The Bank of Thailand releases a daily table combining the weighted-average interbank USD/THB rate — the canonical Thai reference — with average commercial-bank counter rates for 19 major currencies and market crossing rates for 29 more. It is published every Thai business day around 18:00 Bangkok time and is the series Thai accounting and customs practice cite.

Quick start

One request for the pair you need — USD to THB at the official Bank of Thailand rate:

curl "https://allratestoday.com/api/v1/central-bank/bot/latest?source=USD&target=THB" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/bot/latest" \
  -H "Authorization: Bearer art_live_your_key"

On paid plans, any historical date or a time series:

curl "https://allratestoday.com/api/v1/central-bank/bot/history?source=USD&target=THB&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-10)

The most recent table as published by Bank of Thailand — exactly what the /latest endpoint returns right now. Values are THB per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

Download history:
Choose currencies: USD
Excel (.xlsx) CSV

One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.

BaseQuoteTypeRate
AED THB buy 8.9152
AED THB sell 9.0053
AUD THB buy 23.3364
AUD THB sell 24.1426
BDT THB buy 0.2662
BDT THB sell 0.2689
BHD THB buy 86.8578
BHD THB sell 87.7363
BND THB buy 25.6668
BND THB sell 26.4152
CAD THB buy 23.5173
CAD THB sell 24.0051
CHF THB buy 40.3159
CHF THB sell 41.02
CNY THB buy 4.8509
CNY THB sell 4.9652
CZK THB buy 1.5702
CZK THB sell 1.5861
DKK THB buy 5.0771
DKK THB sell 5.1705
EGP THB buy 0.6397
EGP THB sell 0.6462
EUR THB buy 37.9199
EUR THB sell 38.6474
GBP THB buy 44.1811
GBP THB sell 45.0174
HKD THB buy 4.1568
HKD THB sell 4.2407
HUF THB buy 0.1046
HUF THB sell 0.1056
IDR THB buy 0.0017853
IDR THB sell 0.0019772
ILS THB buy 10.8235
ILS THB sell 10.933
INR THB buy 0.3196
INR THB sell 0.3761
IQD THB buy 0.025
IQD THB sell 0.0252
JOD THB buy 46.1853
JOD THB sell 46.6525
JPY THB buy 0.210976
JPY THB sell 0.217971
KES THB buy 0.2531
KES THB sell 0.2556
KHR THB buy 0.00808
KHR THB sell 0.008162
KRW THB buy 0.0244
KRW THB sell 0.0247
KWD THB buy 106.7669
KWD THB sell 107.8468
LAK THB buy 0.00146
LAK THB sell 0.001475
LKR THB buy 0.0997
LKR THB sell 0.1007
MMK THB buy 0.0156
MMK THB sell 0.0158
MVR THB buy 2.1181
MVR THB sell 2.1395
MXN THB buy 1.9381
MXN THB sell 1.9577
MYR THB buy 7.9877
MYR THB sell 8.2064
NOK THB buy 3.5363
NOK THB sell 3.6142
NPR THB buy 0.2152
NPR THB sell 0.2173
NZD THB buy 18.944
NZD THB sell 19.5862
OMR THB buy 85.053
OMR THB sell 85.9132
PGK THB buy 7.3775
PGK THB sell 7.4522
PHP THB buy 0.5086
PHP THB sell 0.5435
PKR THB buy 0.1179
PKR THB sell 0.1191
PLN THB buy 8.8296
PLN THB sell 8.9189
QAR THB buy 8.9829
QAR THB sell 9.0738
RUB THB buy 0.3849
RUB THB sell 0.3888
SAR THB buy 8.7207
SAR THB sell 8.8089
SEK THB buy 3.3967
SEK THB sell 3.471
SGD THB buy 25.7247
SGD THB sell 26.3453
TWD THB buy 1.04
TWD THB sell 1.0505
USD THB buy 32.7454
USD THB reference 32.909
USD THB sell 33.0766
VND THB buy 0.0012640000000000001
VND THB sell 0.0012770000000000001
ZAR THB buy 2.0409
ZAR THB sell 2.0616

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — bank-of-thailand-exchange-rate:

npm install bank-of-thailand-exchange-rate
import { getRate } from 'bank-of-thailand-exchange-rate';

const pair = await getRate('USD', 'THB', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Full reference — installation, all four functions, response shapes, error codes: bank-of-thailand-exchange-rate documentation.

Why use the official Bank of Thailand rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Thailand and beyond typically require the official rate published by Bank of Thailand for a given date — a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.

If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via THB) and marks it "derived": true — published and computed values are never silently mixed.

Endpoints

Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a published table locally makes a small quota go far.

Frequently asked questions

Can I get Bank of Thailand exchange rates via an API?

Yes — this API serves the bank's official daily THB rates as JSON, and the latest table is on every plan, free included.

When do new rates appear here?

Once per business day, per Bank of Thailand's own schedule; ingestion follows within the hour (latest table: 2026-09-10).

Are these the official rates?

Yes — ingested from Bank of Thailand's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Bank of Thailand rates, one API key

Latest table on every plan. History back to 2002 on paid plans. No credit card to start.

Get Free API Key Read the Docs