# revenue_growth_yoy_quarterly_pct

YoY quarterly revenue growth. Signed.

A numeric signal column on the Tickerbot computed state table (21,082+ 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-09-18 and trimmed; your run's values and dates will differ.

### The whole market, filtered on it — `/v2/scan` (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "revenue_growth_yoy_quarterly_pct IS NOT NULL", "order": "revenue_growth_yoy_quarterly_pct", "columns": "revenue_growth_yoy_quarterly_pct" }'
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "revenue_growth_yoy_quarterly_pct IS NOT NULL", "order": "revenue_growth_yoy_quarterly_pct", "columns": "revenue_growth_yoy_quarterly_pct", "asof": "2026-06-28" }'
```

### Its history — `/v2/series` (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_pct" \
  -H "Authorization: Bearer YOUR_KEY"
```

## 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_pct](https://tickerbot.io/docs/signals/earnings_growth_yoy_pct.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/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/revenue_growth_yoy_quarterly_pct/
