Dashboard

Financial growth rates

GET/api/financials/growth

Starter Stock Pro

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.

Get API key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/financials/growth?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8&currency=USD' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

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

Response schema

array of:
  • 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 string (enum)

    Fiscal period of a reported value: `FY` (annual), `Q1`-`Q4` (quarterly), or `TTM` (trailing twelve months).

    Allowed values: FY, Q1, Q2, Q3, Q4, TTM
  • revenueGrowth number | null

    Revenue year-over-year growth

  • grossProfitGrowth number | null

    Gross profit year-over-year growth

  • operatingIncomeGrowth number | null

    Operating income year-over-year growth

  • netIncomeGrowth number | null

    Net income year-over-year growth

  • epsGrowth number | null

    Earnings per share year-over-year growth

  • ebitdaGrowth number | null

    EBITDA year-over-year growth

  • freeCashFlowGrowth number | null

    Free cash flow year-over-year growth

  • totalAssetsGrowth number | null

    Total assets year-over-year growth

  • stockholdersEquityGrowth number | null

    Stockholders' equity year-over-year growth

  • operatingCashFlowGrowth number | null

    Operating cash flow year-over-year growth

Example response

[
  {
    "period": "2024-09-28",
    "fiscalYear": 2025,
    "fiscalPeriod": {},
    "revenueGrowth": 0.0202,
    "grossProfitGrowth": 0.0561,
    "operatingIncomeGrowth": 0.0789,
    "netIncomeGrowth": -0.0345,
    "epsGrowth": -0.0123,
    "ebitdaGrowth": 0.0634,
    "freeCashFlowGrowth": 0.1245,
    "totalAssetsGrowth": 0.0156,
    "stockholdersEquityGrowth": 0.0234,
    "operatingCashFlowGrowth": 0.0891
  }
]

400 Bad Request

Invalid parameters or symbol not found

Response schema

  • error string

    Human-readable error message

Example response

{}

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}