## Get Instrument Cash Flow Statements `InstrumentDataGetInstrumentCashFlowStatementsResponse v1().instrumentData().getInstrumentCashFlowStatements(InstrumentDataGetInstrumentCashFlowStatementsParamsparams = InstrumentDataGetInstrumentCashFlowStatementsParams.none(), RequestOptionsrequestOptions = RequestOptions.none())` **get** `/v1/instruments/{instrument_id}/cash-flow-statements` Get cash flow statements for an instrument. Retrieves historical cash flow statements for the specified instrument. Cash flow statements show cash inflows and outflows from operating, investing, and financing activities. ### Parameters - `InstrumentDataGetInstrumentCashFlowStatementsParams params` - `Optional instrumentId` OEMS instrument UUID - `Optional fromDate` The start date for the query range, inclusive (YYYY-MM-DD). - `Optional pageSize` The number of items to return per page. Only used when page_token is not provided. - `Optional pageToken` Token for retrieving the next or previous page of results. Contains encoded pagination state; when provided, page_size is ignored. - `Optional toDate` The end date for the query range, inclusive (YYYY-MM-DD). ### Returns - `class InstrumentDataGetInstrumentCashFlowStatementsResponse:` - `List data` - `LocalDateTime acceptedDate` The date and time when the filing was accepted by the SEC - `LocalDate filingDate` The date the financial statement was filed - `String period` The fiscal period identifier (e.g., "Q1", "Q2", "Q3", "Q4") - `FiscalPeriodType periodType` The type of fiscal period - `QUARTERLY("QUARTERLY")` - `ANNUAL("ANNUAL")` - `TTM("TTM")` - `BIANNUAL("BIANNUAL")` - `String reportedCurrency` The currency in which the statement is reported (ISO 4217) - `long year` The fiscal year of the statement - `Optional accountsPayables` Change in accounts payables - `Optional accountsReceivables` Change in accounts receivables - `Optional acquisitionsNet` Net acquisitions - `Optional capitalExpenditure` Capital expenditure - `Optional cashAtBeginningOfPeriod` Cash and cash equivalents at beginning of period - `Optional cashAtEndOfPeriod` Cash and cash equivalents at end of period - `Optional changeInWorkingCapital` Change in working capital - `Optional commonDividendsPaid` Common dividends paid - `Optional commonStockIssuance` Common stock issuance - `Optional commonStockRepurchased` Common stock repurchased (buybacks) - `Optional deferredIncomeTax` Deferred income tax expense - `Optional depreciationAndAmortization` Depreciation and amortization expense - `Optional effectOfForexChangesOnCash` Effect of foreign exchange changes on cash - `Optional freeCashFlow` Free cash flow (operating cash flow minus capital expenditure) - `Optional incomeTaxesPaid` Income taxes paid - `Optional interestPaid` Interest paid - `Optional inventory` Change in inventory - `Optional investmentsInPropertyPlantAndEquipment` Investments in property, plant, and equipment - `Optional longTermNetDebtIssuance` Long-term net debt issuance - `Optional netCashProvidedByFinancingActivities` Net cash provided by financing activities - `Optional netCashProvidedByInvestingActivities` Net cash provided by investing activities - `Optional netCashProvidedByOperatingActivities` Net cash provided by operating activities - `Optional netChangeInCash` Net change in cash during the period - `Optional netCommonStockIssuance` Net common stock issuance - `Optional netDebtIssuance` Net debt issuance (long-term + short-term) - `Optional netDividendsPaid` Net dividends paid (common + preferred) - `Optional netIncome` Net income for the period - `Optional netPreferredStockIssuance` Net preferred stock issuance - `Optional netStockIssuance` Net stock issuance (common + preferred) - `Optional operatingCashFlow` Operating cash flow (alternative calculation) - `Optional otherFinancingActivities` Other financing activities - `Optional otherInvestingActivities` Other investing activities - `Optional otherNonCashItems` Other non-cash items - `Optional otherWorkingCapital` Change in other working capital - `Optional preferredDividendsPaid` Preferred dividends paid - `Optional purchasesOfInvestments` Purchases of investments - `Optional salesMaturitiesOfInvestments` Sales and maturities of investments - `Optional shortTermNetDebtIssuance` Short-term net debt issuance - `Optional stockBasedCompensation` Stock-based compensation expense ### Example ```java package com.clear_street.api.example; import com.clear_street.api.client.ClearStreetClient; import com.clear_street.api.client.okhttp.ClearStreetOkHttpClient; import com.clear_street.api.models.v1.instrumentdata.InstrumentDataGetInstrumentCashFlowStatementsParams; import com.clear_street.api.models.v1.instrumentdata.InstrumentDataGetInstrumentCashFlowStatementsResponse; public final class Main { private Main() {} public static void main(String[] args) { ClearStreetClient client = ClearStreetOkHttpClient.builder() .fromEnv() .apiKey("My API Key") .build(); InstrumentDataGetInstrumentCashFlowStatementsResponse response = client.v1().instrumentData().getInstrumentCashFlowStatements("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"); } } ``` #### Response ```json { "data": [ { "accepted_date": "2025-05-02T14:30:00Z", "capital_expenditure": "-2600000000", "cash_at_beginning_of_period": "33743000000", "cash_at_end_of_period": "29943000000", "change_in_working_capital": "-3200000000", "common_stock_repurchased": "-23000000000", "depreciation_and_amortization": "2900000000", "filing_date": "2025-05-01", "free_cash_flow": "25800000000", "investments_in_property_plant_and_equipment": "-2600000000", "net_cash_provided_by_financing_activities": "-28300000000", "net_cash_provided_by_investing_activities": "-3900000000", "net_cash_provided_by_operating_activities": "28400000000", "net_change_in_cash": "-3800000000", "net_debt_issuance": "-1500000000", "net_dividends_paid": "-3800000000", "net_income": "22200000000", "operating_cash_flow": "28400000000", "period": "Q1", "period_type": "QUARTERLY", "purchases_of_investments": "-9500000000", "reported_currency": "USD", "sales_maturities_of_investments": "8200000000", "stock_based_compensation": "2500000000", "year": 2025 } ], "error": null, "metadata": { "next_page_token": "AAAAAAAAAGQAAAAAAAAAZQ==", "page_number": 1, "request_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "total_items": 20, "total_pages": 2 } } ```