Get Instrument Balance Sheet Statements
client.V1.InstrumentData.GetInstrumentBalanceSheetStatements(ctx, instrumentID, query) (*V1InstrumentDataGetInstrumentBalanceSheetStatementsResponse, error)
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)
Get Instrument Balance Sheet Statements
package main
import (
"context"
"fmt"
"github.com/clear-street/clear-street-go"
"github.com/clear-street/clear-street-go/option"
)
func main() {
client := clearstreet.NewClient(
option.WithAPIKey("My API Key"),
)
response, err := client.V1.InstrumentData.GetInstrumentBalanceSheetStatements(
context.TODO(),
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
clearstreet.V1InstrumentDataGetInstrumentBalanceSheetStatementsParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response)
}
{
"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
}
}{
"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",
"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
}
}{
"error": {
"code": 404,
"message": "Instrument not found: AAP"
},
"metadata": {
"request_id": "fa8cc9b2-fbf0-4f5b-8ce3-b3205b9f85f2"
}
}