Dashboard

Cash flow chart

GET/api/financials/chart/cash-flow

Free Starter Stock ETF Pro

Returns chart-ready data for operating cash flow, capital expenditure, and free cash flow over time. Periods are sorted ascending.

Get API key Try it live in the API explorer

Query parameters

Example request

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

Responses

200 OK

Series-oriented chart data with periods sorted ascending

Response schema

  • periods array of string (date)

    Reporting period end dates (YYYY-MM-DD), sorted ascending. Each entry corresponds index-wise to the values in every `series.data` array.

  • series array of object

    Cash flow series in the absolute requested `currency` (default USD). Always returns three entries — `Operating Cash Flow`, `Capital Expenditure`, `Free Cash Flow` — in that order. Capital Expenditure is reported as a positive outflow value (subtracted from operating cash flow to derive free cash flow). Individual data points may be `null` for periods where the underlying fact wasn't tagged.

    array of:
    • name string (enum)
      Allowed values: Operating Cash Flow, Capital Expenditure, Free Cash Flow
    • data array of number | null

Example response

{
  "periods": [
    "2016-09-26",
    "2017-09-26",
    "2018-09-26",
    "2019-09-26",
    "2020-09-26",
    "2021-09-26",
    "2022-09-26",
    "2023-09-26",
    "2024-09-26",
    "2025-09-26"
  ],
  "series": [
    {
      "name": "Operating Cash Flow",
      "data": [
        66231000000,
        64225000000,
        77434000000,
        69391000000,
        80674000000,
        104038000000,
        122151000000,
        110543000000,
        118254000000,
        111482000000
      ]
    },
    {
      "name": "Capital Expenditure",
      "data": [
        12734000000,
        12451000000,
        13313000000,
        10495000000,
        7309000000,
        11085000000,
        10708000000,
        10959000000,
        9447000000,
        12715000000
      ]
    },
    {
      "name": "Free Cash Flow",
      "data": [
        53497000000,
        51774000000,
        64121000000,
        58896000000,
        73365000000,
        92953000000,
        111443000000,
        99584000000,
        108807000000,
        98767000000
      ]
    }
  ]
}

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

{}