View as markdown
Concepts › SignalsFundamentals Income statement

earnings_growth_yoy

Year-over-year EPS growth percent from the most recently reported quarter vs. the same quarter prior year. Signed; positive = growth.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typenumeric
GroupFundamentals
CategoryIncome statement
Unit%
Update cadencepost-close daily
Intervals1d
Universeall tickers
Historyfull · since 2010
Nullableyes — 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 →

Live — every ticker with earnings_growth_yoy above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/earnings_growth_yoy" \
  --data-urlencode "condition=> 15.7" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:34.991Z",
 "signal": "earnings_growth_yoy",
 "condition": "> 15.7",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "PONO",
   "name": "Pono Capital Four, Inc. Class A Ordinary Shares",
   "value": 45664.5
  },
  {
   "ticker": "PONOU",
   "name": "Pono Capital Four, Inc. Units",
   "value": 45664.5
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/earnings_growth_yoy" \
  --data-urlencode "condition=> 15.7" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "earnings_growth_yoy",
 "condition": "> 15.7",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "IIIV",
   "name": "i3 Verticals, Inc. Class A Common Stock",
   "value": 724.4571428571429
  },
  {
   "ticker": "AES",
   "name": "AES Corporation",
   "value": 149
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/earnings_growth_yoy/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 15.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 →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=earnings_growth_yoy IS NOT NULL" \
  -d "order=earnings_growth_yoy" -d "columns=earnings_growth_yoy" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:37.948Z",
 "query": {
  "q": "earnings_growth_yoy IS NOT NULL",
  "limit": 2,
  "order": "earnings_growth_yoy",
  "dir": "desc",
  "fields": [
   "earnings_growth_yoy"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "PONO",
   "name": "Pono Capital Four, Inc. Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 10.03,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": 173825527,
   "earnings_growth_yoy": 45664.5
  },
  {
   "ticker": "PONOU",
   "name": "Pono Capital Four, Inc. Units",
   "asset_class": "stocks",
   "asset_type": "UNIT",
   "price": 10.405,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "earnings_growth_yoy": 45664.5
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=earnings_growth_yoy IS NOT NULL" \
  -d "order=earnings_growth_yoy" -d "columns=earnings_growth_yoy" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "earnings_growth_yoy IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "earnings_growth_yoy",
  "dir": "desc",
  "fields": [
   "earnings_growth_yoy"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "IIIV",
   "name": "i3 Verticals, Inc. Class A Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 19.625,
   "day_change_pct": 3.0183727034120698,
   "gap_pct": -0.1574803149606359,
   "relative_volume": 1.46207578392478,
   "market_cap": 47434,
   "earnings_growth_yoy": 724.4571428571429
  },
  {
   "ticker": "AES",
   "name": "AES Corporation",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 14.73,
   "day_change_pct": 1.098146877144819,
   "gap_pct": 0,
   "relative_volume": 1.3196449231579204,
   "market_cap": 10517220000,
   "earnings_growth_yoy": 149
  }
 ]
}
Subscribe — webhook on a market-wide condition
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "earnings_growth_yoy > 15.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 →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,earnings_growth_yoy" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:40.766Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "earnings_growth_yoy"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "earnings_growth_yoy": 0.287
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "earnings_growth_yoy": 0.287
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "earnings_growth_yoy": 0.287
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "earnings_growth_yoy": 0.317
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "earnings_growth_yoy": 0.317
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "earnings_growth_yoy": 0.317
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Income statement