> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arrays.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Company Cash Flow Statements

> [OpenAPI JSON Spec](/docs/output/v1_stocks_company_cashflow-statements_get.json)
Retrieve cash flow statements for a specific company within a time range



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stocks/company/cashflow-statements
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Welcome to Arrays!


    Arrays is a unified financial data layer for both financial institutions and
    retail users, delivering comprehensive market data across crypto and equity
    markets. Our datasets cover fundamentals, ETFs, options, crypto, and more.


    Visit [arrays.org](https://arrays.org) to request an API key and start your
    free trial. You can explore our full API offerings in the documentation
    below.


    For any questions regarding APIs or pricing, please contact
    support@arrays.org.
  title: Arrays API
  version: '1.0'
servers:
  - url: https://data-tools.prd.arrays.org/api
security: []
paths:
  /v1/stocks/company/cashflow-statements:
    get:
      tags:
        - Stock
      summary: Get Company Cash Flow Statements
      description: >-
        [OpenAPI JSON
        Spec](/docs/output/v1_stocks_company_cashflow-statements_get.json)

        Retrieve cash flow statements for a specific company within a time range
      parameters:
        - description: Stock symbol (uppercase, e.g., NVDA, AAPL)
          in: query
          name: symbol
          required: true
          schema:
            type: string
        - description: Start time (Unix timestamp in seconds)
          in: query
          name: start_time
          required: true
          schema:
            type: integer
            format: int64
        - description: >-
            End time (Unix timestamp in seconds). Must be greater than
            start_time
          in: query
          name: end_time
          required: true
          schema:
            type: integer
            format: int64
        - description: Reporting period type. Omit to return both annual and quarter data
          in: query
          name: period_type
          schema:
            type: string
            enum:
              - annual
              - quarter
        - description: >-
            Time dimension used for filtering. Defaults to OBSERVED_AT.
            CALENDAR_END_DATE: the last day of the reporting period;
            FILING_DATE: the date filed with regulators; OBSERVED_AT: the
            timestamp the data was first ingested (point-in-time safe)
          in: query
          name: time_type
          schema:
            type: string
            enum:
              - CALENDAR_END_DATE
              - FILING_DATE
              - OBSERVED_AT
      responses:
        '200':
          description: Successfully retrieved cash flow statements
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        items:
                          $ref: >-
                            #/components/schemas/model.GetCashFlowByTimeIntervalResponse
                        type: array
                    type: object
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      error:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      error:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
      security:
        - ApiKeyAuth: []
components:
  schemas:
    model.APIResponse:
      properties:
        data: {}
        error:
          $ref: '#/components/schemas/model.APIError'
        metadata: {}
        pagination: {}
        request_id:
          type: string
        success:
          type: boolean
      type: object
    model.GetCashFlowByTimeIntervalResponse:
      properties:
        data:
          description: Array of cash flow statement data
          items:
            $ref: '#/components/schemas/model.CashFlowData'
          type: array
        total_count:
          description: Total count of records
          type: integer
      type: object
    model.APIError:
      properties:
        code:
          example: RESOURCE_NOT_FOUND
          type: string
        details:
          items:
            $ref: '#/components/schemas/model.APIErrorDetail'
          type: array
        docs_url:
          type: string
        examples:
          items:
            type: string
          type: array
        hint:
          type: string
        message:
          example: The requested resource was not found.
          type: string
        suggestions:
          items:
            type: string
          type: array
      type: object
    model.CashFlowData:
      properties:
        accepted_date:
          example: '2024-11-01 06:01:36'
          type: string
        acquisitions_net:
          type: number
        calendar_end_date:
          example: '2024-09-28'
          type: string
        capital_expenditure:
          type: number
        cash_at_beginning_of_period:
          type: number
        cash_at_end_of_period:
          type: number
        change_in_working_capital:
          type: number
        cik:
          example: '0000320193'
          type: string
        created_at:
          type: string
        deferred_income_tax:
          type: number
        depreciation_and_amortization:
          type: number
        effect_of_forex_changes_on_cash:
          type: number
        filing_date:
          example: '2024-11-01'
          type: string
        fiscal_year:
          example: '2024'
          type: string
        free_cash_flow:
          type: number
        id:
          example: 1
          type: integer
        net_cash_provided_by_financing_activities:
          type: number
        net_cash_provided_by_investing_activities:
          type: number
        net_cash_provided_by_operating_activities:
          type: number
        net_change_in_cash:
          type: number
        net_debt_issuance:
          type: number
        net_dividends_paid:
          type: number
        net_income:
          type: number
        net_stock_issuance:
          type: number
        observed_at:
          example: 1730419200
          type: integer
        operating_cash_flow:
          type: number
        other_financing_activities:
          type: number
        other_investing_activities:
          type: number
        other_non_cash_items:
          type: number
        period:
          example: Q4
          type: string
        reported_currency:
          example: USD
          type: string
        symbol:
          example: AAPL
          type: string
        updated_at:
          type: string
      type: object
    model.APIErrorDetail:
      properties:
        field:
          type: string
        got:
          type: string
        reason:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'API Key authentication. Example: "your-api-key-here"'
      in: header
      name: X-API-Key
      type: apiKey

````