Launch of News APIโ
Effective April 17, 2026
Stay on top of market developments with the News API โ a new endpoint that allows you to programmatically fetch market news articles for the instruments you trade.
What's New?โ
News API (GET /v2/news)
Retrieve news articles in three ways by specifying the category parameter:
- By instrument keys โ Set
category=instrument_keysand provide up to 30 instrument keys to get news specific to those instruments. - By positions โ Set
category=positionsto automatically fetch news for all instruments in your current open positions. Noinstrument_keysparameter is required. - By holdings โ Set
category=holdingsto automatically fetch news for all instruments in your holdings portfolio. Noinstrument_keysparameter is required.
- Documentation: Get News
Key Detailsโ
- Each news item includes a headline, summary, thumbnail URL, article link, and published timestamp (Unix ms).
- The response is structured as an array of objects keyed by instrument key, making it easy to map articles to specific instruments.
- Pagination is supported via
page_number(1โ100) andpage_size(1โ100, default 100). - A maximum of 30 instrument keys can be requested per call when using
category=instrument_keys.
How to Get Startedโ
Refer to the Get News API documentation for detailed request parameters, response structure, error codes, and code examples in Python, Node.js, Java, and PHP.