---
title: "Extract a single item from a filing"
method: GET
path: "/api/filings/item"
tags: ["SEC Filings"]
---

# Extract a single item from a filing

`GET /api/filings/item`

![Stock](https://img.shields.io/badge/Stock-f97316) ![Pro](https://img.shields.io/badge/Pro-8b5cf6)

> **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 not have extracted items until processing is complete.

Returns the full content of a single extracted item (section) from a SEC filing.
Content is available as HTML (original formatting preserved) or plain text (tags stripped).

Use `/api/filings/item-list` first to discover which items are available for a given filing.

**Coverage note:** Item extraction is best-effort. SEC filings do not follow a standardized HTML structure —
headings, fonts, and layouts vary significantly across filers and filing agents. Our extractor uses
font-weight, font-size, and DOM structure heuristics to detect section boundaries. While extraction succeeds
for the vast majority of filings, some items may be missing or have imprecise boundaries in edge cases.
If an item is not listed by `/api/filings/item-list`, it was not detected in the filing.

## Query parameters

- `accessionNumber` string, required
- `item` string, required
- `type` 'html' | 'text'

## Response `200`

Extracted item content

- object
  - `accessionNumber` string — SEC accession number
  - `cik` string — Company CIK (zero-padded)
  - `form` string — Filing form type
  - `filedAt` string — Date the filing was submitted
  - `item` string — Item identifier
  - `title` string — Item title
  - `content` string — Full item content (HTML or plain text depending on `type` parameter)
  - `charCount` integer — Content length in characters
  - `contentType` 'html' | 'text' — Format of the content field

## Other responses

- `400` — Invalid parameters
- `401` — Authentication required
- `403` — Feature not available on current plan

---

[API](https://skmtc.net/stockfit/apis/stockfit-api.md) · [All operations](https://skmtc.net/stockfit/apis/stockfit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stockfit/stockfit-api/revisions/3d5897270d8a/schema)
