# basic_earnings_per_share

Basic EPS for the most-recently reported quarter. Signed.

A numeric signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Fundamentals
- Category: Income statement
- Type: numeric
- Unit: USD
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2009
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with basic_earnings_per_share above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/basic_earnings_per_share" \
  --data-urlencode "condition=> 7.7" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### Subscribe — webhook on a market-wide condition

```bash
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. (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,basic_earnings_per_share" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
   }
  ]
 }
}
```

## Related signals (Income statement)

- [benefits_costs_expenses](https://tickerbot.io/docs/signals/benefits_costs_expenses.md)
- [cost_of_revenue](https://tickerbot.io/docs/signals/cost_of_revenue.md)
- [costs_and_expenses](https://tickerbot.io/docs/signals/costs_and_expenses.md)
- [diluted_eps_ttm](https://tickerbot.io/docs/signals/diluted_eps_ttm.md)
- [earnings_growth_yoy](https://tickerbot.io/docs/signals/earnings_growth_yoy.md)
- [ebitda](https://tickerbot.io/docs/signals/ebitda.md)
- [eps](https://tickerbot.io/docs/signals/eps.md)
- [gross_profit](https://tickerbot.io/docs/signals/gross_profit.md)
- [gross_profit_ttm](https://tickerbot.io/docs/signals/gross_profit_ttm.md)
- [income_loss_from_continuing_operations_after_tax](https://tickerbot.io/docs/signals/income_loss_from_continuing_operations_after_tax.md)
- [income_loss_from_continuing_operations_before_tax](https://tickerbot.io/docs/signals/income_loss_from_continuing_operations_before_tax.md)
- [income_tax_expense_benefit](https://tickerbot.io/docs/signals/income_tax_expense_benefit.md)
- [income_tax_expense_benefit_deferred](https://tickerbot.io/docs/signals/income_tax_expense_benefit_deferred.md)
- [net_income_loss](https://tickerbot.io/docs/signals/net_income_loss.md)
- [net_income_loss_attributable_to_noncontrolling_interest](https://tickerbot.io/docs/signals/net_income_loss_attributable_to_noncontrolling_interest.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=basic_earnings_per_share · HTML: https://tickerbot.io/docs/signals/basic_earnings_per_share/
