Extract specific item content from SEC filing
GET/v1/extractor/item
Retrieves filing content from the EDGAR database and returns only the text content of the specified item number.
Item Number Format
Form Type | Item Format Examples |
---|---|
8-K | 1.01, 2.01, 7.01 |
10-K | 1, 2, 3 |
10-K/10-Q | PartI 1, PartII 2 |
tip
For best results, ensure the item number matches exactly with the filing's structure.
Request
Query Parameters
accession_number stringrequired
The SEC filing accession number used to retrieve the filing from EDGAR database.
item_number stringrequired
The specific item number to extract (e.g., "1.01", "2.01", "7.01").
Responses
- 200
- 400
- 404
- 500
Successful extraction
- application/json
- Schema
Schema
string
Invalid request
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
type stringnullable
title stringnullable
status int32nullable
detail stringnullable
instance stringnullable
errors
object
nullable
property name*
string[]
nullable
string
property name* any
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"errors": {}
}
Filing or item not found
Server error
- application/json
- Schema
- Example (from schema)
Schema
type stringnullable
title stringnullable
status int32nullable
detail stringnullable
instance stringnullable
property name* any
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Loading...
Was this section helpful?