Earnings Feed
A real-time feed of the most recently filed earnings across all covered companies.
Documentation Index
Fetch the complete documentation index at: https://docs.financialdatasets.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Earnings Feed returns the most recent earnings filings across all covered companies, sorted by SEC filing date (newest first). Use it to power dashboards, alerts, or any view of “what just got reported.” Each entry follows the sameEarningsRecord shape as the company-earnings response — see Earnings for the full field reference. The feed sorts by filing_date descending (most recently filed first) and dedupes by (ticker, report_period).
As a company progresses from its initial 8-K earnings release to the full 10-Q or 10-K filing, the entry updates to reflect the most complete data available.
Getting Started
CallGET /earnings/ without the ticker query param:
- Add your API key to the header of the request as
X-API-KEY. - Optionally provide
limit(default10, max100). - Execute the API request.
Example
Notes
- Sort order: items are returned newest-first by SEC
filing_date. - Dedup: each
(ticker, report_period)appears once per response. When both an 8-K earnings release and the corresponding 10-Q/10-K are available, the more complete filing is shown. source_type: identifies the underlying SEC form —8-K(preliminary earnings release),10-Q(quarterly),10-K(annual), or20-F(foreign annual).- Polling: results are cached briefly server-side; expect near-real-time freshness as new filings land.
Authorizations
API key for authentication.
Query Parameters
The ticker symbol (e.g. AAPL).
Number of most-recent report periods worth of filings to return, sorted by (report_period DESC, filing_date ASC). The number of entries returned may exceed limit when a recent period has both an 8-K and a 10-Q / 10-K. Values above 40 are clamped to 40. Non-positive or non-integer values return 400.
1 <= x <= 40Response
Earnings response
Flat list of SEC filings for the ticker, sorted by (report_period DESC, filing_date ASC). When limit=N, up to N report_periods worth of filings are returned; entry count may exceed N when a recent period has both an 8-K and a 10-Q/10-K.