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.
Get Instrument Cash Flow Statements
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");
}
}{
"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
}
}{
"error": {
"code": 404,
"message": "Instrument not found: AAP"
},
"metadata": {
"request_id": "fa8cc9b2-fbf0-4f5b-8ce3-b3205b9f85f2"
}
}Returns Examples
{
"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
}
}{
"error": {
"code": 404,
"message": "Instrument not found: AAP"
},
"metadata": {
"request_id": "fa8cc9b2-fbf0-4f5b-8ce3-b3205b9f85f2"
}
}