last_reported_eps
Actual EPS reported in the most recent earnings announcement.
At a glance
| Type | numeric |
| Group | Events |
| Category | Earnings |
| Unit | USD |
| 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_reported_eps" \
--data-urlencode "condition=> 7.16" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:24.029Z",
"signal": "last_reported_eps",
"condition": "> 7.16",
"universe": null,
"count": 2,
"results": [
{
"ticker": "BMA",
"name": "Banco Macro S.A.",
"value": 2243.97
},
{
"ticker": "VCIG",
"name": "VCI Global Limited Ordinary Share",
"value": 831.54
}
]
}curl -G "https://api.tickerbot.io/v2/signals/last_reported_eps" \
--data-urlencode "condition=> 7.16" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "last_reported_eps",
"condition": "> 7.16",
"universe": null,
"count": 2,
"results": [
{
"ticker": "PICS",
"name": "PicS N.V. Class A Common Shares",
"value": 761000.2488
},
{
"ticker": "VCIG",
"name": "VCI Global Limited Ordinary Share",
"value": 831.54
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/last_reported_eps/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 7.16", "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_reported_eps IS NOT NULL" \
-d "order=last_reported_eps" -d "columns=last_reported_eps" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:27.183Z",
"query": {
"q": "last_reported_eps IS NOT NULL",
"limit": 2,
"order": "last_reported_eps",
"dir": "desc",
"fields": [
"last_reported_eps"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "BMA",
"name": "Banco Macro S.A.",
"asset_class": "stocks",
"asset_type": "ADRC",
"price": 78.83,
"day_change_pct": 0.0157,
"gap_pct": 0.0108,
"relative_volume": null,
"market_cap": 4962308118,
"last_reported_eps": 2243.97
},
{
"ticker": "VCIG",
"name": "VCI Global Limited Ordinary Share",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.253,
"day_change_pct": -0.0194,
"gap_pct": -0.0078,
"relative_volume": 1.7965,
"market_cap": 2395507,
"last_reported_eps": 831.54
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=last_reported_eps IS NOT NULL" \
-d "order=last_reported_eps" -d "columns=last_reported_eps" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "last_reported_eps IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "last_reported_eps",
"dir": "desc",
"fields": [
"last_reported_eps"
],
"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_reported_eps": 761000.2488
},
{
"ticker": "VCIG",
"name": "VCI Global Limited Ordinary Share",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.756,
"day_change_pct": 0.8000000000000007,
"gap_pct": 0.19999999999999277,
"relative_volume": 0.6371160519086073,
"market_cap": null,
"last_reported_eps": 831.54
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "last_reported_eps > 7.16", "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_reported_eps" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:29.997Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"last_reported_eps"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"last_reported_eps": 1.91
},
{
"t": "2026-08-13",
"close": 305.26,
"last_reported_eps": 2.02
},
{
"t": "2026-08-14",
"close": 305.93,
"last_reported_eps": 2.02
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"last_reported_eps": 4.74
},
{
"t": "2026-08-13",
"close": 496.88,
"last_reported_eps": 4.74
},
{
"t": "2026-08-14",
"close": 495.4,
"last_reported_eps": 4.74
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.