Skip to main content
This walkthrough finds a company’s recent 10-K filings, then extracts one named section from the most recent one. Two calls.

1. List recent 10-Ks

curl
Response
filing_type narrows to one form. cik is not supported here, pass ticker instead. Measured cost: $0.0006.

2. Extract one section

Take the filing_type and the fiscal year of the filing you found, and pull one item from it. year is required on this route, the auto-resolve-latest-year behavior the Financial Datasets schema describes is MCP only here.
curl
Response, illustrative shape
Extraction is rule-based against known SEC section boundaries, not an LLM guessing where a section starts and ends. Measured cost: $0.0015 (index lookup plus scrape).

When no filing matches

A year with no matching filing, or a ticker with no filing of that type, answers HTTP 200 with an ErrorResponse body rather than a 404, at no additional cost.

Total

Two calls, $0.0021 combined at these measured costs. See Filings and Filing Items for the full parameter list, including the closed list of valid filing_type values and why item takes one code per request here instead of an array.