3d5897270d8a
Extract a single item from a filing
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
SEC accession number of the filing.
Item identifier. The available items depend on the filing's form type.
10-K Annual Report Items
| Item | Title |
|---|---|
| 1 | Business |
| 1A | Risk Factors |
| 1B | Unresolved Staff Comments |
| 1C | Cybersecurity |
| 2 | Properties |
| 3 | Legal Proceedings |
| 4 | Mine Safety Disclosures |
| 5 | Market for Common Equity |
| 7 | Management's Discussion and Analysis |
| 7A | Quantitative and Qualitative Disclosures About Market Risk |
| 8 | Financial Statements |
| 9 | Changes in and Disagreements with Accountants |
| 9A | Controls and Procedures |
| 9B | Other Information |
| 9C | Disclosure Regarding Foreign Jurisdictions |
| 10 | Directors, Executive Officers and Corporate Governance |
| 11 | Executive Compensation |
| 12 | Security Ownership |
| 13 | Certain Relationships and Related Transactions |
| 14 | Principal Accountant Fees |
| 15 | Exhibits and Financial Statement Schedules |
| 16 | Form 10-K Summary |
10-Q Quarterly Report Items
| Item | Title |
|---|---|
| 1 | Financial Statements (Part I) / Legal Proceedings (Part II) |
| 1A | Risk Factors |
| 2 | Management's Discussion and Analysis (Part I) / Unregistered Sales (Part II) |
| 3 | Market Risk Disclosures (Part I) / Defaults Upon Senior Securities (Part II) |
| 4 | Controls and Procedures (Part I) / Mine Safety (Part II) |
| 5 | Other Information |
| 6 | Exhibits |
8-K Current Report Items
| Item | Title |
|---|---|
| 1.01 | Entry into a Material Definitive Agreement |
| 1.02 | Termination of a Material Definitive Agreement |
| 1.03 | Bankruptcy or Receivership |
| 1.04 | Mine Safety |
| 1.05 | Material Cybersecurity Incidents |
| 2.01 | Completion of Acquisition or Disposition of Assets |
| 2.02 | Results of Operations and Financial Condition |
| 2.03 | Creation of a Direct Financial Obligation |
| 2.04 | Triggering Events That Accelerate a Direct Financial Obligation |
| 2.05 | Costs Associated with Exit or Disposal Activities |
| 2.06 | Material Impairments |
| 3.01 | Notice of Delisting or Failure to Satisfy Listing Standards |
| 3.02 | Unregistered Sales of Equity Securities |
| 3.03 | Material Modification to Rights of Security Holders |
| 4.01 | Changes in Registrant's Certifying Accountant |
| 4.02 | Non-Reliance on Previously Issued Financial Statements |
| 5.01 | Changes in Control of Registrant |
| 5.02 | Departure of Directors or Certain Officers |
| 5.03 | Amendments to Articles of Incorporation or Bylaws |
| 5.04 | Temporary Suspension of Trading Under Employee Benefit Plans |
| 5.05 | Amendment to Code of Ethics |
| 5.06 | Change in Shell Company Status |
| 5.07 | Submission of Matters to a Vote of Security Holders |
| 5.08 | Shareholder Nominations |
| 6.01 | ABS Informational and Computational Material |
| 6.02 | Change of Servicer or Trustee |
| 6.03 | Change in Credit Enhancement |
| 6.04 | Failure to Make a Required Distribution |
| 6.05 | Securities Act Updating Disclosure |
| 7.01 | Regulation FD Disclosure |
| 8.01 | Other Events |
| 9.01 | Financial Statements and Exhibits |
S-1 Registration Statement Items
| Item | Title |
|---|---|
| risk-factors | Risk Factors |
| business | Business |
| mda | Management's Discussion and Analysis |
Response content format.
- html — Original HTML with formatting, tables, and structure preserved.
- text — Plain text with HTML tags stripped. Tables are converted to tab-separated values.
Response
Extracted item content
Example response
{
"accessionNumber": "0000320193-25-000079",
"cik": "0000320193",
"form": "10-K",
"filedAt": "2025-11-01",
"item": "1A",
"title": "Risk Factors",
"content": "<div>The following discussion of risk factors contains...",
"charCount": 84231,
"contentType": "html"
}