## Get Instrument Balance Sheet Statements `InstrumentDataGetInstrumentBalanceSheetStatementsResponse v1().instrumentData().getInstrumentBalanceSheetStatements(InstrumentDataGetInstrumentBalanceSheetStatementsParamsparams = InstrumentDataGetInstrumentBalanceSheetStatementsParams.none(), RequestOptionsrequestOptions = RequestOptions.none())` **get** `/v1/instruments/{instrument_id}/balance-sheets` Get balance sheet statements for an instrument. Retrieves quarterly balance sheet statements for a specific instrument, sorted by fiscal period (most recent first). Date range defaults: - `from_date`: None (no lower bound) - `to_date`: None (no upper bound) ### Parameters - `InstrumentDataGetInstrumentBalanceSheetStatementsParams 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 InstrumentDataGetInstrumentBalanceSheetStatementsResponse:` - `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 accountPayables` Account payables - `Optional accountsReceivables` Accounts receivables - `Optional accruedExpenses` Accrued expenses - `Optional accumulatedOtherComprehensiveIncomeLoss` Accumulated other comprehensive income/loss - `Optional additionalPaidInCapital` Additional paid-in capital - `Optional capitalLeaseObligations` Capital lease obligations (total) - `Optional capitalLeaseObligationsCurrent` Capital lease obligations (current portion) - `Optional cashAndCashEquivalents` Cash and cash equivalents - `Optional cashAndShortTermInvestments` Cash and short-term investments combined - `Optional commonStock` Common stock - `Optional deferredRevenue` Deferred revenue - `Optional deferredRevenueNonCurrent` Deferred revenue (non-current) - `Optional deferredTaxLiabilitiesNonCurrent` Deferred tax liabilities (non-current) - `Optional goodwill` Goodwill - `Optional goodwillAndIntangibleAssets` Goodwill and intangible assets combined - `Optional intangibleAssets` Intangible assets - `Optional inventory` Inventory - `Optional longTermDebt` Long-term debt - `Optional longTermInvestments` Long-term investments - `Optional minorityInterest` Minority interest - `Optional netDebt` Net debt (total debt minus cash) - `Optional netReceivables` Net receivables - `Optional otherAssets` Other assets - `Optional otherCurrentAssets` Other current assets - `Optional otherCurrentLiabilities` Other current liabilities - `Optional otherLiabilities` Other liabilities - `Optional otherNonCurrentAssets` Other non-current assets - `Optional otherNonCurrentLiabilities` Other non-current liabilities - `Optional otherPayables` Other payables - `Optional otherReceivables` Other receivables - `Optional otherTotalStockholdersEquity` Other total stockholders equity - `Optional preferredStock` Preferred stock - `Optional prepaids` Prepaids - `Optional propertyPlantAndEquipmentNet` Property, plant and equipment net of depreciation - `Optional retainedEarnings` Retained earnings - `Optional shortTermDebt` Short-term debt - `Optional shortTermInvestments` Short-term investments - `Optional taxAssets` Tax assets - `Optional taxPayables` Tax payables - `Optional totalAssets` Total assets - `Optional totalCurrentAssets` Total current assets - `Optional totalCurrentLiabilities` Total current liabilities - `Optional totalDebt` Total debt - `Optional totalEquity` Total equity - `Optional totalInvestments` Total investments - `Optional totalLiabilities` Total liabilities - `Optional totalLiabilitiesAndTotalEquity` Total liabilities and total equity - `Optional totalNonCurrentAssets` Total non-current assets - `Optional totalNonCurrentLiabilities` Total non-current liabilities - `Optional totalPayables` Total payables - `Optional totalStockholdersEquity` Total stockholders equity - `Optional treasuryStock` Treasury stock ### 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.InstrumentDataGetInstrumentBalanceSheetStatementsParams; import com.clear_street.api.models.v1.instrumentdata.InstrumentDataGetInstrumentBalanceSheetStatementsResponse; public final class Main { private Main() {} public static void main(String[] args) { ClearStreetClient client = ClearStreetOkHttpClient.builder() .fromEnv() .apiKey("My API Key") .build(); InstrumentDataGetInstrumentBalanceSheetStatementsResponse response = client.v1().instrumentData().getInstrumentBalanceSheetStatements("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"); } } ``` #### Response ```json { "data": [ { "accepted_date": "2025-05-02T14:30:00Z", "cash_and_cash_equivalents": "29943000000", "filing_date": "2025-05-01", "net_debt": "76323000000", "period": "Q1", "period_type": "QUARTERLY", "reported_currency": "USD", "total_assets": "352583000000", "total_debt": "106266000000", "total_liabilities": "308258000000", "total_stockholders_equity": "56727000000", "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 } } ```