revenue_growth_yoy
Year-over-year revenue growth: most-recent quarter vs same quarter prior year. Signed; positive = growth.
At a glance
| Type | numeric |
| Group | Fundamentals |
| Category | Income statement |
| Unit | % |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2010 |
| Nullable | yes — 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 →
curl -G "https://api.tickerbot.io/v2/signals/revenue_growth_yoy" \
--data-urlencode "condition=> 0.8672" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:38.558Z",
"signal": "revenue_growth_yoy",
"condition": "> 0.8672",
"universe": null,
"count": 2,
"results": [
{
"ticker": "DOMH",
"name": "Dominari Holdings Inc. Common Stock",
"value": 4.6176
},
{
"ticker": "PRTA",
"name": "Prothena Corporation plc Ordinary Shares",
"value": 4.2732
}
]
}curl -G "https://api.tickerbot.io/v2/signals/revenue_growth_yoy" \
--data-urlencode "condition=> 0.8672" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "revenue_growth_yoy",
"condition": "> 0.8672",
"universe": null,
"count": 2,
"results": [
{
"ticker": "EXE",
"name": "Expand Energy Corporation Common Stock",
"value": 1142.040149754712
},
{
"ticker": "MPU",
"name": "Mega Matrix Inc.",
"value": 726.2511627906977
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/revenue_growth_yoy/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 0.8672", "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 →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=revenue_growth_yoy IS NOT NULL" \
-d "order=revenue_growth_yoy" -d "columns=revenue_growth_yoy" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:41.392Z",
"query": {
"q": "revenue_growth_yoy IS NOT NULL",
"limit": 2,
"order": "revenue_growth_yoy",
"dir": "desc",
"fields": [
"revenue_growth_yoy"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "DOMH",
"name": "Dominari Holdings Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 2.6,
"day_change_pct": -0.0406,
"gap_pct": 0.0037,
"relative_volume": null,
"market_cap": 65700280,
"revenue_growth_yoy": 4.6176
},
{
"ticker": "PRTA",
"name": "Prothena Corporation plc Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 8.87,
"day_change_pct": 0.0011,
"gap_pct": -0.0023,
"relative_volume": null,
"market_cap": 454845589,
"revenue_growth_yoy": 4.2732
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=revenue_growth_yoy IS NOT NULL" \
-d "order=revenue_growth_yoy" -d "columns=revenue_growth_yoy" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "revenue_growth_yoy IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "revenue_growth_yoy",
"dir": "desc",
"fields": [
"revenue_growth_yoy"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "EXE",
"name": "Expand Energy Corporation Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 98.85,
"day_change_pct": -2.0220041629497536,
"gap_pct": -0.25770641292497287,
"relative_volume": 1.2485814666879638,
"market_cap": 23713423050,
"revenue_growth_yoy": 1142.040149754712
},
{
"ticker": "MPU",
"name": "Mega Matrix Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.5501,
"day_change_pct": -1.7678571428571463,
"gap_pct": 0.01785714285714089,
"relative_volume": 0.5499397833535168,
"market_cap": 20374642,
"revenue_growth_yoy": 726.2511627906977
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "revenue_growth_yoy > 0.8672", "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 →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,revenue_growth_yoy" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:43.888Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"revenue_growth_yoy"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"revenue_growth_yoy": 0.1276
},
{
"t": "2026-08-13",
"close": 305.26,
"revenue_growth_yoy": 0.1276
},
{
"t": "2026-08-14",
"close": 305.93,
"revenue_growth_yoy": 0.1276
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"revenue_growth_yoy": 0.1779
},
{
"t": "2026-08-13",
"close": 496.88,
"revenue_growth_yoy": 0.1779
},
{
"t": "2026-08-14",
"close": 495.4,
"revenue_growth_yoy": 0.1779
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.