Returns the approximate upcoming earnings date for a single stock. Dates are predicted based on historical filing patterns and may differ from actual announcements. Delisted companies (no active listing on any exchange) have no upcoming earnings and return null for both earningsDate and filingDate.
symbol string optional Stock ticker symbol. Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.
cik integer optional SEC Central Index Key (CIK).
cusip string optional CUSIP identifier (9 characters).
composite_figi string optional Composite OpenFIGI identifier.
share_class_figi string optional Share-class OpenFIGI identifier.
curl 'https://api.stockfit.io/v1/api/earnings/date?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8' \
-H 'Authorization: Bearer YOUR_API_TOKEN'Earnings date for the symbol
symbol string earningsDate string | null Predicted earnings call date (YYYY-MM-DD) or null if unknown
filingDate string | null Approximate date when the SEC filing (10-Q/10-K) is expected to become available through the SEC (YYYY-MM-DD). The actual filing may appear earlier. Null if unknown.
{
"symbol": "AAPL",
"earningsDate": "2026-04-24",
"filingDate": "2026-05-01"
}Invalid parameters or symbol not found
error string Human-readable error message
{}Feature not available on current plan
error string Human-readable error message
{}