Dashboard

List extracted items for a filing

GET/api/filings/item-list

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 key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/filings/item-list' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

List of available items

Response schema

array of:
  • item string

    Item identifier

  • title string

    Item title

  • charCount integer

    Content length in characters

Example response

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

400 Bad Request

Invalid parameters

Response schema

  • error string

    Human-readable error message

Example response

{}

401 Unauthorized

Authentication required

Response schema

  • error string

    Human-readable error message

Example response

{}

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}