# revenue_growth_yoy_quarterly

YoY quarterly revenue growth. Signed.

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: Fundamentals
- Category: Income statement
- Type: numeric
- Unit: %
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2010
- 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 revenue_growth_yoy_quarterly above a cutoff

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

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

```json
{
 "as_of": "2026-08-18T00:25:38.394Z",
 "signal": "revenue_growth_yoy_quarterly",
 "condition": "> 6.2",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "HCWB",
   "name": "HCW Biologics Inc. Common Stock",
   "value": 1290.81
  },
  {
   "ticker": "KWM",
   "name": "K Wave Media, Ltd. Ordinary Shares",
   "value": 1079.59
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-05-20",
 "signal": "revenue_growth_yoy_quarterly",
 "condition": "> 6.2",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "EXE",
   "name": "Expand Energy Corporation Common Stock",
   "value": 1718.4202898550725
  },
  {
   "ticker": "VRDN",
   "name": "Viridian Therapeutics, Inc. Common Stock",
   "value": 979.1388888888889
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-08-18T00:25:41.120Z",
 "query": {
  "q": "revenue_growth_yoy_quarterly IS NOT NULL",
  "limit": 2,
  "order": "revenue_growth_yoy_quarterly",
  "dir": "desc",
  "fields": [
   "revenue_growth_yoy_quarterly"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "HCWB",
   "name": "HCW Biologics Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 2.59,
   "day_change_pct": -0.0336,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": 4279552,
   "revenue_growth_yoy_quarterly": 1290.81
  },
  {
   "ticker": "KWM",
   "name": "K Wave Media, Ltd. Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 2.679,
   "day_change_pct": 0.0802,
   "gap_pct": 0.004,
   "relative_volume": null,
   "market_cap": 6490532,
   "revenue_growth_yoy_quarterly": 1079.59
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "revenue_growth_yoy_quarterly IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "revenue_growth_yoy_quarterly",
  "dir": "desc",
  "fields": [
   "revenue_growth_yoy_quarterly"
  ],
  "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_quarterly": 1718.4202898550725
  },
  {
   "ticker": "VRDN",
   "name": "Viridian Therapeutics, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 17.63,
   "day_change_pct": 10.39448966812773,
   "gap_pct": 0.1878522229179672,
   "relative_volume": 1.182637033090156,
   "market_cap": null,
   "revenue_growth_yoy_quarterly": 979.1388888888889
  }
 ]
}
```

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

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

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

## Related signals (Income statement)

- [basic_earnings_per_share](https://tickerbot.io/docs/signals/basic_earnings_per_share.md)
- [benefits_costs_expenses](https://tickerbot.io/docs/signals/benefits_costs_expenses.md)
- [cost_of_revenue](https://tickerbot.io/docs/signals/cost_of_revenue.md)
- [costs_and_expenses](https://tickerbot.io/docs/signals/costs_and_expenses.md)
- [diluted_eps_ttm](https://tickerbot.io/docs/signals/diluted_eps_ttm.md)
- [earnings_growth_yoy](https://tickerbot.io/docs/signals/earnings_growth_yoy.md)
- [ebitda](https://tickerbot.io/docs/signals/ebitda.md)
- [eps](https://tickerbot.io/docs/signals/eps.md)
- [gross_profit](https://tickerbot.io/docs/signals/gross_profit.md)
- [gross_profit_ttm](https://tickerbot.io/docs/signals/gross_profit_ttm.md)
- [income_loss_from_continuing_operations_after_tax](https://tickerbot.io/docs/signals/income_loss_from_continuing_operations_after_tax.md)
- [income_loss_from_continuing_operations_before_tax](https://tickerbot.io/docs/signals/income_loss_from_continuing_operations_before_tax.md)
- [income_tax_expense_benefit](https://tickerbot.io/docs/signals/income_tax_expense_benefit.md)
- [income_tax_expense_benefit_deferred](https://tickerbot.io/docs/signals/income_tax_expense_benefit_deferred.md)
- [net_income_loss](https://tickerbot.io/docs/signals/net_income_loss.md)

---

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