symbols

AlphaAI earnings reads for one ticker, plus its next report date

Every published AlphaAI earnings read for the ticker, newest first, and the date of its next report when the company has confirmed one.

A read is produced from the company's own SEC filing — an 8-K item 2.02 for US filers, a 6-K earnings release for foreign private issuers — within minutes of it reaching EDGAR, and every number in it is verified against the filing text before publication. /earnings/latest/ returns just a pointer to the newest one; this endpoint returns the analyses themselves.

Bridges share classes: a request for one class returns the reads filed under the issuer's primary class, and each row's ticker names the class it was actually filed under, which may differ from the one you asked for.

Unpaginated and capped at 20 reads. Depth is currently shallow by construction — AlphaAI's own filing history starts in mid-June 2026 and reports arrive quarterly — so most tickers carry one or two.

get/api/symbols/{ticker}/earnings/

Path parameters

tickerstring required

Accepts the same ticker forms as the symbol detail endpoint.

Response

The ticker's earnings reads. An empty reports array is a normal answer, not an error: it means no read has been published yet.

tickerstring required

The requested ticker, normalized to upper case.

next_report_datestring date nullable

Same field, same rules, as next_report_date on the symbol detail response: the company-confirmed date of the next report in America/New_York, or null when AlphaAI holds no confirmed one. Never an estimate.

Example response

{
  "reports": [
    {
      "fiscal_period": "Second Quarter Fiscal 2027",
      "analysis": {
        "fiscal_period": "Second Quarter Fiscal 2027",
        "key_metrics": [
          {
            "value": "$96.2 billion"
          }
        ]
      }
    }
  ],
  "next_report_date": "2026-11-17"
}

Changes

Changed in 1 of the 8 revisions of this API.1