basic_earnings_per_share
Basic EPS for the most-recently reported quarter. Signed.
At a glance
| Type | numeric |
| Group | Fundamentals |
| Category | Income statement |
| Unit | USD |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2009 |
| Nullable | yes — NULL where not applicable |
Income-statement lines as reported, EPS, and their growth rates.
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/basic_earnings_per_share" \
--data-urlencode "condition=> 7.7" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:50.180Z",
"signal": "basic_earnings_per_share",
"condition": "> 7.7",
"universe": null,
"count": 2,
"results": [
{
"ticker": "LLYVA",
"name": "Liberty Live Holdings, Inc. Series A Liberty Live Group Common Stock",
"value": 457000
},
{
"ticker": "TVC",
"name": "Tennessee Valley Authority Power Bonds 1998 Series D due June 1, 2028",
"value": 307000
}
]
}curl -G "https://api.tickerbot.io/v2/signals/basic_earnings_per_share" \
--data-urlencode "condition=> 7.7" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "basic_earnings_per_share",
"condition": "> 7.7",
"universe": null,
"count": 2,
"results": [
{
"ticker": "NVR",
"name": "NVR, Inc.",
"value": 119.26
},
{
"ticker": "SEB",
"name": "Seaboard Corporation",
"value": 113.71
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/basic_earnings_per_share/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 7.7", "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=basic_earnings_per_share IS NOT NULL" \
-d "order=basic_earnings_per_share" -d "columns=basic_earnings_per_share" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:53.418Z",
"query": {
"q": "basic_earnings_per_share IS NOT NULL",
"limit": 2,
"order": "basic_earnings_per_share",
"dir": "desc",
"fields": [
"basic_earnings_per_share"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "LLYVA",
"name": "Liberty Live Holdings, Inc. Series A Liberty Live Group Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 101.94,
"day_change_pct": -0.0291,
"gap_pct": -0.005,
"relative_volume": null,
"market_cap": 9659644426,
"basic_earnings_per_share": 457000
},
{
"ticker": "TVC",
"name": "Tennessee Valley Authority Power Bonds 1998 Series D due June 1, 2028",
"asset_class": "stocks",
"asset_type": "SP",
"price": 24.085,
"day_change_pct": 0.0002,
"gap_pct": -0.0008,
"relative_volume": 1.2059,
"market_cap": null,
"basic_earnings_per_share": 307000
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=basic_earnings_per_share IS NOT NULL" \
-d "order=basic_earnings_per_share" -d "columns=basic_earnings_per_share" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "basic_earnings_per_share IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "basic_earnings_per_share",
"dir": "desc",
"fields": [
"basic_earnings_per_share"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "NVR",
"name": "NVR, Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 5990.37,
"day_change_pct": 3.7559409164599664,
"gap_pct": -0.009006637198804828,
"relative_volume": 1.4749426394275256,
"market_cap": 18276618870,
"basic_earnings_per_share": 119.26
},
{
"ticker": "SEB",
"name": "Seaboard Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 4995.08,
"day_change_pct": 3.8197576538565405,
"gap_pct": 0.6638538440753974,
"relative_volume": 1.060484523792002,
"market_cap": 4788373599,
"basic_earnings_per_share": 113.71
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "basic_earnings_per_share > 7.7", "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,basic_earnings_per_share" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:55.658Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"basic_earnings_per_share"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"basic_earnings_per_share": 2.02
},
{
"t": "2026-08-13",
"close": 305.26,
"basic_earnings_per_share": 2.02
},
{
"t": "2026-08-14",
"close": 305.93,
"basic_earnings_per_share": 2.02
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"basic_earnings_per_share": 4.81
},
{
"t": "2026-08-13",
"close": 496.88,
"basic_earnings_per_share": 4.82
},
{
"t": "2026-08-14",
"close": 495.4,
"basic_earnings_per_share": 4.82
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.