recently_reported_earnings
Reported earnings within the last 5 days.
At a glance
EXISTS(ticker_earnings_history row with reported_date in [today - 5d, today - 1d]). Captures the post-earnings reaction window.| Type | state (boolean) |
| Group | Events |
| Category | Earnings |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | historized, with known gaps · since 2003 |
| Firing | continuous |
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 signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl "https://api.tickerbot.io/v2/signals/recently_reported_earnings" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:34.210Z",
"signal": "recently_reported_earnings",
"condition": null,
"universe": null,
"count": 2,
"results": [
{
"ticker": "ABEO",
"name": "Abeona Therapeutics Inc. Common Stock",
"value": true
},
{
"ticker": "ACOG",
"name": "Alpha Cognition Inc. Common Stock",
"value": true
}
]
}curl "https://api.tickerbot.io/v2/signals/recently_reported_earnings?asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "recently_reported_earnings",
"condition": null,
"universe": null,
"count": 2,
"results": [
{
"ticker": "ABOS",
"name": "Acumen Pharmaceuticals, Inc. Common Stock",
"value": true
},
{
"ticker": "ABSI",
"name": "Absci Corporation Common Stock",
"value": true
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/recently_reported_earnings/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook — the same shape as GET /v2/webhooks/{id}, plus a one-time signing_secret for HMAC verification.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=recently_reported_earnings" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:34.659Z",
"query": {
"q": "recently_reported_earnings",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "IPST",
"name": "IP Strategy Holdings, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 7.965,
"day_change_pct": 2.6203,
"gap_pct": 2.5998,
"relative_volume": null,
"market_cap": 1587543
},
{
"ticker": "PFSA",
"name": "Profusa, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 8.116,
"day_change_pct": 1.2549,
"gap_pct": 0.1336,
"relative_volume": null,
"market_cap": 228058
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=recently_reported_earnings" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "recently_reported_earnings",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "SLXN",
"name": "Silexion Therapeutics Corp Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 5.298,
"day_change_pct": 96.95167286245353,
"gap_pct": 134.1635687732342,
"relative_volume": 29.19710936261394,
"market_cap": 600082
},
{
"ticker": "QUCY",
"name": "Quantum Cyber N.V. Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 3.29,
"day_change_pct": 30.555555555555557,
"gap_pct": -9.920634920634921,
"relative_volume": 0.7407593924043954,
"market_cap": null
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "recently_reported_earnings", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Use series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,recently_reported_earnings" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:37.379Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"recently_reported_earnings"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"recently_reported_earnings": false
},
{
"t": "2026-08-13",
"close": 305.26,
"recently_reported_earnings": false
},
{
"t": "2026-08-14",
"close": 305.93,
"recently_reported_earnings": false
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"recently_reported_earnings": false
},
{
"t": "2026-08-13",
"close": 496.88,
"recently_reported_earnings": false
},
{
"t": "2026-08-14",
"close": 495.4,
"recently_reported_earnings": false
}
]
}
}Use events /v2/events
The flag as a timeline: each edge as a point event, and the spans it stayed true. Docs →
curl -G "https://api.tickerbot.io/v2/events" \
-d "kind=signal" -d "signal=recently_reported_earnings" -d "transition=enter" -d "since=2026-01-10" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:37.586Z",
"query": {
"kind": "signal",
"tickers": null,
"universe": null,
"since": "2026-01-10T00:00:00.000Z",
"until": null,
"limit": 2,
"signal": "recently_reported_earnings",
"transition": "enter"
},
"count": 2,
"results": [
{
"ticker": "ZEO",
"ts": "2026-08-14T20:00:00.000Z",
"kind": "signal",
"payload": {
"signal": "recently_reported_earnings",
"transition": "enter",
"price": 0.618,
"definition_version": 6
}
},
{
"ticker": "ZENA",
"ts": "2026-08-14T20:00:00.000Z",
"kind": "signal",
"payload": {
"signal": "recently_reported_earnings",
"transition": "enter",
"price": 2.135,
"definition_version": 6
}
}
]
}curl "https://api.tickerbot.io/v2/signals/recently_reported_earnings/ZEO/events" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:37.733Z",
"ticker": "ZEO",
"signal": "recently_reported_earnings",
"count": 2,
"events": [
{
"started_at": "2026-08-14T20:00:00.000Z",
"ended_at": "2026-08-15T20:00:00.000Z",
"start_price": 0.618,
"end_price": 0.618,
"definition_version": 6
},
{
"started_at": "2026-05-18T20:00:00.000Z",
"ended_at": "2026-05-21T20:00:00.000Z",
"start_price": 0.9266,
"end_price": 0.8709,
"definition_version": 6
}
]
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.