Skip to main content
GET
Get company news

Overview

The Company News API lets you pull recent news articles for a given company by ticker. Our news articles are sourced from public RSS feeds. Looking for broad market news instead? Use the Market News endpoint, which takes no ticker. To get started, please create an account and grab your API key at financialdatasets.ai. You will use the API key to authenticate your API requests.

Coverage

Getting Started

There are only 3 steps for making a successful API call:
  1. Add your API key to the header of the request as X-API-KEY.
  2. Add the ticker query param for the company you want news about. Optionally add limit to control the number of results.
  3. Execute the API request.

Example

Company News

Authorizations

X-API-KEY
string
header
required

API key for authentication.

Query Parameters

ticker
string
required

The ticker symbol of the company, e.g. AAPL.

Example:

"AAPL"

limit
integer
default:5

The maximum number of news articles to return (default: 5, max: 10).

Required range: x <= 10
cursor
string

Opaque pagination cursor from a previous response's next_page_url. When provided, all other query parameters are ignored: the cursor carries the original request's filters. Treat it as opaque; do not construct or modify it.

Response

News articles response

news
object[]
next_page_url
string

Absolute URL of the next page of results. Present only when more results remain; request it as-is to continue. Each page holds up to 10 records.