# enterprise_value

Market cap + total debt − cash.

A bigint 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: Valuation
- Type: bigint
- Unit: USD
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: recent only (forward-only from first computation)
- 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 enterprise_value above a cutoff

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

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

```json
{
 "as_of": "2026-08-18T00:23:43.028Z",
 "signal": "enterprise_value",
 "condition": "> 162303748830",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "NVDA",
   "name": "Nvidia Corp",
   "value": 5448833360000
  },
  {
   "ticker": "AAPL",
   "name": "Apple Inc.",
   "value": 4503936487400
  }
 ]
}
```

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

```bash
curl -G "https://api.tickerbot.io/v2/signals/enterprise_value" \
  --data-urlencode "condition=> 162303748830" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "signal": "enterprise_value",
 "condition": "> 162303748830",
 "universe": null,
 "count": 0,
 "results": []
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/enterprise_value/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 162303748830", "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=enterprise_value IS NOT NULL" \
  -d "order=enterprise_value" -d "columns=enterprise_value" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:46.015Z",
 "query": {
  "q": "enterprise_value IS NOT NULL",
  "limit": 2,
  "order": "enterprise_value",
  "dir": "desc",
  "fields": [
   "enterprise_value"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "NVDA",
   "name": "Nvidia Corp",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 225.125,
   "day_change_pct": -0.0002,
   "gap_pct": 0.0036,
   "relative_volume": null,
   "market_cap": 5453600360000,
   "enterprise_value": 5448833360000
  },
  {
   "ticker": "AAPL",
   "name": "Apple Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 305.15,
   "day_change_pct": -0.0025,
   "gap_pct": 0.0009,
   "relative_volume": null,
   "market_cap": 4464797487400,
   "enterprise_value": 4503936487400
  }
 ]
}
```

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

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=enterprise_value IS NOT NULL" \
  -d "order=enterprise_value" -d "columns=enterprise_value" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "enterprise_value IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "enterprise_value",
  "dir": "desc",
  "fields": [
   "enterprise_value"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 0,
 "results": []
}
```

#### 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": "enterprise_value > 162303748830", "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,enterprise_value" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:48.395Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "enterprise_value"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "enterprise_value": 4611933419400
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "enterprise_value": 4450229905000
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "enterprise_value": 4494158386800
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "enterprise_value": 3732057490045
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "enterprise_value": 3675920366133
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "enterprise_value": 3708964043568
   }
  ]
 }
}
```

## Related signals (Valuation)

- [beta](https://tickerbot.io/docs/signals/beta.md)
- [cap_class](https://tickerbot.io/docs/signals/cap_class.md)
- [dividend_yield](https://tickerbot.io/docs/signals/dividend_yield.md)
- [ev_to_ebitda](https://tickerbot.io/docs/signals/ev_to_ebitda.md)
- [ev_to_sales](https://tickerbot.io/docs/signals/ev_to_sales.md)
- [forward_pe](https://tickerbot.io/docs/signals/forward_pe.md)
- [high_beta](https://tickerbot.io/docs/signals/high_beta.md)
- [high_dividend_yield](https://tickerbot.io/docs/signals/high_dividend_yield.md)
- [large_cap](https://tickerbot.io/docs/signals/large_cap.md)
- [low_beta](https://tickerbot.io/docs/signals/low_beta.md)
- [market_cap](https://tickerbot.io/docs/signals/market_cap.md)
- [mega_cap](https://tickerbot.io/docs/signals/mega_cap.md)
- [micro_cap](https://tickerbot.io/docs/signals/micro_cap.md)
- [mid_cap](https://tickerbot.io/docs/signals/mid_cap.md)
- [nano_cap](https://tickerbot.io/docs/signals/nano_cap.md)

---

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