API Reference
Balance-sheet Segments
The balance-sheet route of the segmented-financials family. Segment breakdowns are disclosed on the income statement, not the balance sheet, so this route always returns an empty array. It exists for a symmetric, parity API surface.
GET
/v1/financials/balance-sheets/segments?ticker={ticker}Always empty by design
This route validates the issuer (an unknown
ticker still returns 404) and then returns a successful 200 with an empty balance_sheet_segments array. For the segment data that does exist, use Income segments.Query parameters & errors#
Identical to income segments: pass ticker or cik, with optional period, limit, and report-period filters. Same error contract (400 / 401 / 402 / 404 / 503).
Example#
curlbash
curl "https://api.focusalpha.ai/v1/financials/balance-sheets/segments?ticker=AAPL" \
-H "Authorization: Bearer $FOCUSALPHA_API_KEY"balance-sheet-segments.jsonjson
{ "balance_sheet_segments": [] }