v1

latestOpenAPI 3.0.02026-07-26166415635.8 KB
News

News articles

Returns the latest news articles across stocks and crypto. By default, returns the latest 10 news articles.

get/v1beta1/news

Query parameters

startstring date-time

The inclusive start of the interval. Format: RFC-3339 or YYYY-MM-DD. Default: the beginning of the current day, but at least 15 minutes ago if the user doesn't have real-time access for the feed.

endstring date-time

The inclusive end of the interval. Format: RFC-3339 or YYYY-MM-DD. Default: the current time if the user has a real-time access for the feed, otherwise 15 minutes before the current time.

sort'asc' | 'desc'

Sort articles by updated date.

symbolsstring
Example:AAPL,TSLA,BTCUSD

A comma-separated list of symbols for which to query news.

limitinteger

Limit of news items to be returned for a result page.

include_contentboolean

Boolean indicator to include content for news articles (if available).

exclude_contentlessboolean

Boolean indicator to exclude news articles that do not contain content.

page_tokenstring

The pagination token from which to continue. The value to pass here is returned in specific requests when more data is available, usually because of a response result limit.

Response

OK

next_page_tokenstring nullable required

Pagination token for the next page.

Example response

{
  "news": [
    {
      "images": [
        {
          "size": "thumb"
        }
      ]
    }
  ]
}