# last_earnings_surprise_pct

Beat as percent of consensus.

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: Events
- Category: Earnings
- Type: numeric
- Unit: %
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2003
- 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 last_earnings_surprise_pct above a cutoff

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

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

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

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

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

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

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

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

```bash
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. (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=last_earnings_surprise_pct IS NOT NULL" \
  -d "order=last_earnings_surprise_pct" -d "columns=last_earnings_surprise_pct" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

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

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

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

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

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

#### 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": "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. (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,last_earnings_surprise_pct" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

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

## Related signals (Earnings)

- [days_to_earnings](https://tickerbot.io/docs/signals/days_to_earnings.md)
- [earnings_approaching](https://tickerbot.io/docs/signals/earnings_approaching.md)
- [earnings_beat_streak](https://tickerbot.io/docs/signals/earnings_beat_streak.md)
- [earnings_date](https://tickerbot.io/docs/signals/earnings_date.md)
- [earnings_fiscal_quarter](https://tickerbot.io/docs/signals/earnings_fiscal_quarter.md)
- [earnings_next_week](https://tickerbot.io/docs/signals/earnings_next_week.md)
- [earnings_published](https://tickerbot.io/docs/signals/earnings_published.md)
- [earnings_report_time](https://tickerbot.io/docs/signals/earnings_report_time.md)
- [earnings_this_week](https://tickerbot.io/docs/signals/earnings_this_week.md)
- [earnings_today](https://tickerbot.io/docs/signals/earnings_today.md)
- [earnings_tomorrow](https://tickerbot.io/docs/signals/earnings_tomorrow.md)
- [last_earnings_surprise](https://tickerbot.io/docs/signals/last_earnings_surprise.md)
- [last_reported_eps](https://tickerbot.io/docs/signals/last_reported_eps.md)
- [recently_reported_earnings](https://tickerbot.io/docs/signals/recently_reported_earnings.md)

---

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