API Reference
Cash-flow Segments
The cash-flow route of the segmented-financials family. Segment breakdowns are disclosed on the income statement, not the cash-flow statement, so this route always returns an empty array. It exists for a symmetric, parity API surface.
GET
/v1/financials/cash-flow-statements/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 cash_flow_statement_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/cash-flow-statements/segments?ticker=AAPL" \
-H "Authorization: Bearer $FOCUSALPHA_API_KEY"cash-flow-segments.jsonjson
{ "cash_flow_statement_segments": [] }