last_earnings_surprise_pct
Beat as percent of consensus.
At a glance
| Type | numeric |
| Group | Events |
| Category | Earnings |
| Unit | % |
| 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 signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl -G "https://api.tickerbot.io/v2/signals/last_earnings_surprise_pct" \
--data-urlencode "condition=> 285.2459" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:22.940Z",
"signal": "last_earnings_surprise_pct",
"condition": "> 285.2459",
"universe": null,
"count": 2,
"results": [
{
"ticker": "IRTC",
"name": "iRhythm Holdings, Inc. Common Stock",
"value": 5900
},
{
"ticker": "OESX",
"name": "Orion Energy Systems, Inc.",
"value": 4800
}
]
}curl -G "https://api.tickerbot.io/v2/signals/last_earnings_surprise_pct" \
--data-urlencode "condition=> 285.2459" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "last_earnings_surprise_pct",
"condition": "> 285.2459",
"universe": null,
"count": 2,
"results": [
{
"ticker": "PICS",
"name": "PicS N.V. Class A Common Shares",
"value": 70462886
},
{
"ticker": "NKLR",
"name": "Terra Innovatum Global N.V. Ordinary shares",
"value": 16584.3333
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/last_earnings_surprise_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 285.2459", "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=last_earnings_surprise_pct IS NOT NULL" \
-d "order=last_earnings_surprise_pct" -d "columns=last_earnings_surprise_pct" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:25.582Z",
"query": {
"q": "last_earnings_surprise_pct IS NOT NULL",
"limit": 2,
"order": "last_earnings_surprise_pct",
"dir": "desc",
"fields": [
"last_earnings_surprise_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "IRTC",
"name": "iRhythm Holdings, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 116.915,
"day_change_pct": -0.0753,
"gap_pct": -0.0126,
"relative_volume": null,
"market_cap": 4167842099,
"last_earnings_surprise_pct": 5900
},
{
"ticker": "OESX",
"name": "Orion Energy Systems, Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 19.26,
"day_change_pct": -0.0047,
"gap_pct": 0.0026,
"relative_volume": null,
"market_cap": 79127684,
"last_earnings_surprise_pct": 4800
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=last_earnings_surprise_pct IS NOT NULL" \
-d "order=last_earnings_surprise_pct" -d "columns=last_earnings_surprise_pct" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "last_earnings_surprise_pct IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "last_earnings_surprise_pct",
"dir": "desc",
"fields": [
"last_earnings_surprise_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "PICS",
"name": "PicS N.V. Class A Common Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 11.19,
"day_change_pct": 2.098540145985389,
"gap_pct": 0,
"relative_volume": 0.3820132847305248,
"market_cap": null,
"last_earnings_surprise_pct": 70462886
},
{
"ticker": "NKLR",
"name": "Terra Innovatum Global N.V. Ordinary shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 5.48,
"day_change_pct": 4.580152671755729,
"gap_pct": 1.1450381679389239,
"relative_volume": 0.362537297420622,
"market_cap": null,
"last_earnings_surprise_pct": 16584.3333
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "last_earnings_surprise_pct > 285.2459", "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,last_earnings_surprise_pct" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:28.405Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"last_earnings_surprise_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"last_earnings_surprise_pct": 1.5957
},
{
"t": "2026-08-13",
"close": 305.26,
"last_earnings_surprise_pct": 7.4468
},
{
"t": "2026-08-14",
"close": 305.93,
"last_earnings_surprise_pct": 7.4468
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"last_earnings_surprise_pct": 12.5891
},
{
"t": "2026-08-13",
"close": 496.88,
"last_earnings_surprise_pct": 12.5891
},
{
"t": "2026-08-14",
"close": 495.4,
"last_earnings_surprise_pct": 12.5891
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.