Get Filings
Get SEC filings for a company (10-K, 10-Q, 8-K, etc.)
$0.01 per request
GET
/companies/{identifier}/filingsRequest
curl "https://api.redcent.io/sec-edgar/companies/AAPL/filings?form_type=10-K&limit=5" \ -H "X-PAYMENT: <payment-token>"
Response
200
{ "company": { "cik": "0000320193", "ticker": "AAPL", "name": "Apple Inc." }, "filings": [ { "accessionNumber": "0000320193-23-000077", "formType": "10-K", "filingDate": "2023-11-03", "periodOfReport": "2023-09-30", "url": "https://www.sec.gov/Archives/edgar/data/320193/..." } ], "count": 5, "source": "cache" }
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| identifier | string | Yes | Stock ticker or CIK number |
| form_type | string | No | Filter by form type (e.g., 10-K, 10-Q, 8-K) |
| limit | integer | No | Max results to return (default: 20, max: 100) |
| offset | integer | No | Number of results to skip for pagination |
Response Schema
Field
Type
Description
company
object
Company information
filings
array
Array of SEC filing objects
count
integer
Number of filings returned in this response
source
string
Data source (cache or sec-live)