latestOpenAPI 3.0.02026-08-2010141507.9 KB

3d5897270d8a

SEC Filings

List extracted items for a filing

Stock Pro

Preview: This endpoint is a preview of a planned feature for a future release. Item extraction is not yet enabled for the full filing universe — most filings will return an empty list until processing is complete.

Returns the list of extracted items (sections) available for a given SEC filing. Each entry includes the item identifier, title, and content size — but not the actual content. Use /api/filings/item to retrieve the full content of a specific item.

Coverage note: Item extraction is best-effort. SEC filings have no standardized HTML structure, so some items may be missing if the filing uses an unusual layout. Common items like Risk Factors (1A), MD&A (7), and Financial Statements (8) have the highest extraction success rate. 8-K items are extracted from the filing body — not all 8-K filings contain structured item sections.

get/api/filings/item-list

Query parameters

accessionNumberstring required
Example:0000320193-25-000079

SEC accession number of the filing.

Response

List of available items

itemstring

Item identifier

titlestring

Item title

charCountinteger

Content length in characters

Example response

[
  {
    "item": "1A",
    "title": "Risk Factors",
    "charCount": 84231
  }
]