Skip to main content
GET
Get cash flow statement segments

Authorizations

X-API-KEY
string
header
required

The caller's own Monid API key (get one at https://monid.ai?fpr=dhruv-15136b). Passed straight through to Monid on every call, so usage bills the caller's own wallet — this is never a shared server-side credential, and the server never logs or stores it. Missing, empty, or malformed values answer 401 unauthorized before any paid call is attempted.

Query Parameters

ticker
string
required

Uppercase-normalized ticker symbol (1-20 letters/digits/dots/hyphens).

period
enum<string>
default:annual

Reporting cadence. Only "annual" (the default) is supported: "quarterly" answers 400 bad_request, since this server extracts segment data from the annual 10-K only.

Available options:
annual,
quarterly
limit
integer
default:4

Number of records to retrieve (default: 4, max: 100).

Required range: 1 <= x <= 100
report_period
string<date>

Exact report_period date filter (YYYY-MM-DD).

report_period_gte
string<date>

report_period >= this date (YYYY-MM-DD, inclusive).

report_period_lte
string<date>

report_period <= this date (YYYY-MM-DD, inclusive).

report_period_gt
string<date>

report_period > this date (YYYY-MM-DD, exclusive).

report_period_lt
string<date>

report_period < this date (YYYY-MM-DD, exclusive).

cursor
string

Opaque base64url pagination cursor from a previous response's next_page_url. Omit for the first page.

Response

This route never has statement-specific data to return today (see description); the example shows the identity-only shape every call currently gets.

Wrapped list envelope: {"segmented_financials": [...], "next_page_url": "..."}. Page size is 10 records. May instead be a two-key ErrorResponse when no 10-K filing exists for the ticker.

cash_flow_statement_segments
CashFlowStatementSegmentsRecord · object[]
required
next_page_url
string<uri>