---
title: "Financial growth rates"
method: GET
path: "/api/financials/growth"
tags: ["Financials"]
---

# Financial growth rates

`GET /api/financials/growth`

![Starter](https://img.shields.io/badge/Starter-3b82f6) ![Stock](https://img.shields.io/badge/Stock-f97316) ![Pro](https://img.shields.io/badge/Pro-8b5cf6)

Returns year-over-year growth rates for key financial line items. Each value is expressed as a decimal (e.g. 0.15 = 15% growth, -0.08 = 8% decline). Computed as `(current - previous) / |previous|`.

Covers revenue, gross profit, operating income, net income, EPS, EBITDA, free cash flow, total assets, stockholders' equity, and operating cash flow.

## Query parameters

- `symbol` string
- `cik` integer
- `cusip` string
- `composite_figi` string
- `share_class_figi` string
- `currency` string
- `period` 'annual' | 'quarter' | 'ttm' — Reporting period: `annual`, `quarter`, or `ttm` (trailing twelve months). TTM sums the last 4 quarters for flow items and uses the latest quarter for point-in-time items.
- `limit` integer

## Response `200`

Growth rates by period (most recent first). `epsGrowth` is always computed on a split-adjusted basis so it stays meaningful across stock-split boundaries.

- object[]
  - `period` string — The fiscal period end date
  - `fiscalYear` integer — The company's fiscal year (handles non-December year-ends — AAPL FY ends Sep, COST FY ends Aug).
  - `fiscalPeriod` 'FY' | 'Q1' | 'Q2' | 'Q3' | 'Q4' | 'TTM' — Fiscal period of a reported value: `FY` (annual), `Q1`-`Q4` (quarterly), or `TTM` (trailing twelve months).
  - `revenueGrowth` number, nullable — Revenue year-over-year growth
  - `grossProfitGrowth` number, nullable — Gross profit year-over-year growth
  - `operatingIncomeGrowth` number, nullable — Operating income year-over-year growth
  - `netIncomeGrowth` number, nullable — Net income year-over-year growth
  - `epsGrowth` number, nullable — Earnings per share year-over-year growth
  - `ebitdaGrowth` number, nullable — EBITDA year-over-year growth
  - `freeCashFlowGrowth` number, nullable — Free cash flow year-over-year growth
  - `totalAssetsGrowth` number, nullable — Total assets year-over-year growth
  - `stockholdersEquityGrowth` number, nullable — Stockholders' equity year-over-year growth
  - `operatingCashFlowGrowth` number, nullable — Operating cash flow year-over-year growth

## Other responses

- `400` — Invalid parameters or symbol not found
- `403` — Feature not available on current plan

---

[API](https://skmtc.net/stockfit/apis/stockfit-api.md) · [All operations](https://skmtc.net/stockfit/apis/stockfit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stockfit/stockfit-api/revisions/3d5897270d8a/schema)
