# recently_reported_earnings

Reported earnings within the last 5 days.

A boolean signal (flag) 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.

Definition: `EXISTS(ticker_earnings_history row with reported_date in [today - 5d, today - 1d]). Captures the post-earnings reaction window.`

- Group: Events
- Category: Earnings
- Type: state
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: historized, with known gaps · since 2003
- Firing: continuous

## 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 where it fires now

```bash
curl "https://api.tickerbot.io/v2/signals/recently_reported_earnings" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:25:34.210Z",
 "signal": "recently_reported_earnings",
 "condition": null,
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ABEO",
   "name": "Abeona Therapeutics Inc. Common Stock",
   "value": true
  },
  {
   "ticker": "ACOG",
   "name": "Alpha Cognition Inc. Common Stock",
   "value": true
  }
 ]
}
```

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

```bash
curl "https://api.tickerbot.io/v2/signals/recently_reported_earnings?asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "signal": "recently_reported_earnings",
 "condition": null,
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ABOS",
   "name": "Acumen Pharmaceuticals, Inc. Common Stock",
   "value": true
  },
  {
   "ticker": "ABSI",
   "name": "Absci Corporation Common Stock",
   "value": true
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/recently_reported_earnings/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"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, filtered on this signal

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=recently_reported_earnings" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:25:34.659Z",
 "query": {
  "q": "recently_reported_earnings",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "IPST",
   "name": "IP Strategy Holdings, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 7.965,
   "day_change_pct": 2.6203,
   "gap_pct": 2.5998,
   "relative_volume": null,
   "market_cap": 1587543
  },
  {
   "ticker": "PFSA",
   "name": "Profusa, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 8.116,
   "day_change_pct": 1.2549,
   "gap_pct": 0.1336,
   "relative_volume": null,
   "market_cap": 228058
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "recently_reported_earnings",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "SLXN",
   "name": "Silexion Therapeutics Corp Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 5.298,
   "day_change_pct": 96.95167286245353,
   "gap_pct": 134.1635687732342,
   "relative_volume": 29.19710936261394,
   "market_cap": 600082
  },
  {
   "ticker": "QUCY",
   "name": "Quantum Cyber N.V. Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 3.29,
   "day_change_pct": 30.555555555555557,
   "gap_pct": -9.920634920634921,
   "relative_volume": 0.7407593924043954,
   "market_cap": null
  }
 ]
}
```

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

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

```json
{
 "as_of": "2026-08-18T00:25:37.379Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "recently_reported_earnings"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "recently_reported_earnings": false
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "recently_reported_earnings": false
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "recently_reported_earnings": false
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "recently_reported_earnings": false
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "recently_reported_earnings": false
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "recently_reported_earnings": false
   }
  ]
 }
}
```

### Use events — `/v2/events`

The flag as a timeline: each edge as a point event, and the spans it stayed true. (https://tickerbot.io/docs/endpoints/events.md)

#### Firings — every enter edge as a point event

```bash
curl -G "https://api.tickerbot.io/v2/events" \
  -d "kind=signal" -d "signal=recently_reported_earnings" -d "transition=enter" -d "since=2026-01-10" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:25:37.586Z",
 "query": {
  "kind": "signal",
  "tickers": null,
  "universe": null,
  "since": "2026-01-10T00:00:00.000Z",
  "until": null,
  "limit": 2,
  "signal": "recently_reported_earnings",
  "transition": "enter"
 },
 "count": 2,
 "results": [
  {
   "ticker": "ZEO",
   "ts": "2026-08-14T20:00:00.000Z",
   "kind": "signal",
   "payload": {
    "signal": "recently_reported_earnings",
    "transition": "enter",
    "price": 0.618,
    "definition_version": 6
   }
  },
  {
   "ticker": "ZENA",
   "ts": "2026-08-14T20:00:00.000Z",
   "kind": "signal",
   "payload": {
    "signal": "recently_reported_earnings",
    "transition": "enter",
    "price": 2.135,
    "definition_version": 6
   }
  }
 ]
}
```

#### Spans — when it was true for one ticker (ZEO)

```bash
curl "https://api.tickerbot.io/v2/signals/recently_reported_earnings/ZEO/events" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:25:37.733Z",
 "ticker": "ZEO",
 "signal": "recently_reported_earnings",
 "count": 2,
 "events": [
  {
   "started_at": "2026-08-14T20:00:00.000Z",
   "ended_at": "2026-08-15T20:00:00.000Z",
   "start_price": 0.618,
   "end_price": 0.618,
   "definition_version": 6
  },
  {
   "started_at": "2026-05-18T20:00:00.000Z",
   "ended_at": "2026-05-21T20:00:00.000Z",
   "start_price": 0.9266,
   "end_price": 0.8709,
   "definition_version": 6
  }
 ]
}
```

## 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_earnings_surprise_pct](https://tickerbot.io/docs/signals/last_earnings_surprise_pct.md)
- [last_reported_eps](https://tickerbot.io/docs/signals/last_reported_eps.md)

---

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