View as markdown
Concepts › SignalsEvents Earnings

earnings_report_time

When in the trading day the next earnings will be reported. One of `BMO` (before market open), `AMC` (after market close), `DMH` (during market hours).

Watch this signal live on real tickers: Open in Explore →

At a glance

Typetext
GroupEvents
CategoryEarnings
Update cadencepost-close daily
Intervals1d
Universeall tickers
Historyfull · since 2003
Nullableyes — 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_report_time IS NOT NULL" \
  -d "order=earnings_report_time" -d "columns=earnings_report_time" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:36.685Z",
 "query": {
  "q": "earnings_report_time IS NOT NULL",
  "limit": 2,
  "order": "earnings_report_time",
  "dir": "desc",
  "fields": [
   "earnings_report_time"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "AAAP",
   "name": "Pacer Barings CLO Market Flex ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 25.365,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "earnings_report_time": "pre-market"
  },
  {
   "ticker": "AACB",
   "name": "Artius II Acquisition Inc. Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 10.58,
   "day_change_pct": -0.0009,
   "gap_pct": -0.0005,
   "relative_volume": null,
   "market_cap": 293078250,
   "earnings_report_time": "pre-market"
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=earnings_report_time IS NOT NULL" \
  -d "order=earnings_report_time" -d "columns=earnings_report_time" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "earnings_report_time IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "earnings_report_time",
  "dir": "desc",
  "fields": [
   "earnings_report_time"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "AACB",
   "name": "Artius II Acquisition Inc. Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 10.44,
   "day_change_pct": 0,
   "gap_pct": 0,
   "relative_volume": 0.03339596417172861,
   "market_cap": null,
   "earnings_report_time": "pre-market"
  },
  {
   "ticker": "AACBU",
   "name": "Artius II Acquisition Inc. Units",
   "asset_class": "stocks",
   "asset_type": "UNIT",
   "price": 10.656,
   "day_change_pct": 0.44302007729287013,
   "gap_pct": 0.4712979545668839,
   "relative_volume": null,
   "market_cap": null,
   "earnings_report_time": "pre-market"
  }
 ]
}

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_report_time" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:39.502Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "earnings_report_time"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "earnings_report_time": "post-market"
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "earnings_report_time": "post-market"
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "earnings_report_time": "post-market"
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "earnings_report_time": "post-market"
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "earnings_report_time": "post-market"
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "earnings_report_time": "post-market"
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Earnings