Get extracted SEC filing sections
Retrieves specific sections (items) from one SEC filing: fetches the filing index, resolves the matching 10-K/10-Q/8-K, scrapes it (Monid Context.dev /web/scrape/markdown), and extracts the requested item section(s).
Deviations from the FD JSON Schema: year is required here (400 bad_request “year is required” if missing) even though the FD schema, and the underlying get_filing_items tool itself, support omitting year to auto-resolve the latest matching filing — that capability exists only via MCP, not REST. item accepts a single item code per request here, not the array the FD schema declares. include_exhibits is accepted for FD parameter parity but true always answers 400 bad_request: exhibit extraction is not implemented. When no filing matches, this answers HTTP 200 with an ErrorResponse body rather than a 4xx status, at zero additional cost.
Authorizations
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
Uppercase-normalized ticker symbol.
The filing type.
10-K, 10-Q, 8-K The filing year. Required here (see description).
The fiscal quarter, for 10-Q filings.
1 <= x <= 4Select an exact filing by SEC accession number, e.g. for 8-K filings.
A single item code, e.g. Item-1, Item-1A. The FD schema declares this as an array; only one value is accepted per request here. Omit to return every detected section.
Accepted for FD parameter parity but true always answers 400 bad_request; exhibits are not sourced.
Response
Extracted filing sections, or a not_found soft failure (see description).
- FilingItemsResponse
- ErrorResponse
The unwrapped body returned by GET /filings/items.
SEC EDGAR URL of the source filing document.
Uppercase ticker symbol.
Normalized filing type: 10-K, 10-Q, or 8-K.
SEC EDGAR accession number, or null when the source filing has none.
Filing year.
Fiscal quarter (1-4), or null for a 10-K.
Extracted sections. Empty array (never omitted) when nothing matched.