THB Data Coverage Guide: What You Can Query for the Thai Baht
Author: FXMacroData Team
Published: 2026-05-21
If you trade USD/THB or monitor Thailand macro risk, this guide shows what THB data is available on FXMacroData right now and how to query it with stable endpoint patterns.
Coverage centers on historical announcements, upcoming release timing from the release calendar, indicator discovery, and policy communication from the Bank of Thailand.
THB Data Surfaces Available Now
- Announcements:
/api/v1/announcements/thb/{indicator} - Release calendar:
/api/v1/calendar/thb - Indicator discovery:
/api/v1/data_catalogue/thb - Central-bank communication:
/dashboard/press-releases/thb
For implementation work, start from the catalogue route so your indicator list always matches currently published THB slugs.
Which THB Indicators Are Available
The THB catalogue includes policy, prices, growth, external balance, labor, and money coverage. Commonly used slugs include:
- policy_rate and risk_free_rate
- inflation and ppi
- gdp
- trade_balance, exports, imports, and current_account_balance
- unemployment, employment, and participation_rate
- m1 and m2
To confirm the current live list in your environment, call:
curl "https://fxmacrodata.com/api/v1/data_catalogue/thb?api_key=YOUR_API_KEY"
Announcement History for THB
Use announcement endpoints to build event studies and release-impact windows:
curl "https://fxmacrodata.com/api/v1/announcements/thb/policy_rate?start_date=2023-01-01&end_date=2026-05-21&api_key=YOUR_API_KEY"
Rows include date, val, and announcement_datetime, which makes it straightforward to align Thai macro events with post-release market behavior.
Upcoming THB Event Timing
For forward event tracking and alerting:
curl "https://fxmacrodata.com/api/v1/calendar/thb?api_key=YOUR_API_KEY"
This route helps with pre-event workflow planning by returning upcoming release timestamps and release slugs in one response.
Tip: Add indicator=policy_rate to isolate MPC timing when building rate-decision alerts.
Suggested THB Workflow
- Discover valid slugs with
/api/v1/data_catalogue/thb. - Pull history from
/api/v1/announcements/thb/{indicator}. - Track upcoming catalysts with
/api/v1/calendar/thb. - Add policy context from
/dashboard/press-releases/thb.
This sequence gives you a clean THB process from discovery through monitoring and event-driven analysis.
Get Started
A fast THB validation run is: /data_catalogue/thb, then /calendar/thb, then /announcements/thb/policy_rate. That confirms indicator discovery, forward event coverage, and historical event payload shape before you wire strategy logic.