earnings_fiscal_quarter
Fiscal quarter the next earnings report covers (e.g. "2026Q1"). Distinct from calendar quarter — covers companies whose fiscal year doesn't match the calendar.
Watch this signal live on real tickers: Open in Explore →
At a glance
| Type | text |
| Group | Events |
| Category | Earnings |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2003 |
| Nullable | yes — NULL where not applicable |
The earnings calendar and its outcomes: dates, windows, surprises, streaks.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=earnings_fiscal_quarter IS NOT NULL" \
-d "order=earnings_fiscal_quarter" -d "columns=earnings_fiscal_quarter" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:23:33.980Z",
"query": {
"q": "earnings_fiscal_quarter IS NOT NULL",
"limit": 2,
"order": "earnings_fiscal_quarter",
"dir": "desc",
"fields": [
"earnings_fiscal_quarter"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "AA",
"name": "Alcoa Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 51.857,
"day_change_pct": 0.0376,
"gap_pct": 0.0044,
"relative_volume": null,
"market_cap": 13190194061,
"earnings_fiscal_quarter": "2026-09-30"
},
{
"ticker": "AAL",
"name": "American Airlines Group Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 14.466,
"day_change_pct": -0.0245,
"gap_pct": -0.0039,
"relative_volume": null,
"market_cap": 9817014373,
"earnings_fiscal_quarter": "2026-09-30"
}
]
}As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=earnings_fiscal_quarter IS NOT NULL" \
-d "order=earnings_fiscal_quarter" -d "columns=earnings_fiscal_quarter" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-05-20",
"query": {
"q": "earnings_fiscal_quarter IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "earnings_fiscal_quarter",
"dir": "desc",
"fields": [
"earnings_fiscal_quarter"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "AAP",
"name": "ADVANCE AUTO PARTS INC",
"asset_class": "stocks",
"asset_type": "CS",
"price": 51.24,
"day_change_pct": 3.452453058752273,
"gap_pct": -1.0498687664042057,
"relative_volume": 1.9905455122618771,
"market_cap": 3074400000,
"earnings_fiscal_quarter": "4"
},
{
"ticker": "ACON",
"name": "Aclarion, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 3.19,
"day_change_pct": -0.3125000000000072,
"gap_pct": -0.4687500000000039,
"relative_volume": 0.2025374699574675,
"market_cap": 1857763,
"earnings_fiscal_quarter": "4"
}
]
}Use series /v2/series
Its history over time, on one aligned grid. Docs →
History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,earnings_fiscal_quarter" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:23:36.947Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"earnings_fiscal_quarter"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"earnings_fiscal_quarter": "2026-06-30"
},
{
"t": "2026-08-13",
"close": 305.26,
"earnings_fiscal_quarter": "2026-06-30"
},
{
"t": "2026-08-14",
"close": 305.93,
"earnings_fiscal_quarter": "2026-09-30"
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"earnings_fiscal_quarter": "2026-06-30"
},
{
"t": "2026-08-13",
"close": 496.88,
"earnings_fiscal_quarter": "2026-06-30"
},
{
"t": "2026-08-14",
"close": 495.4,
"earnings_fiscal_quarter": "2026-06-30"
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.