GET
/companies/{identifier}/filingsGet SEC filings for a company (10-K, 10-Q, 8-K, etc.)
$0.01 per request
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 |
Request
curl "https://api.redcent.io/companies/AAPL/filings?form_type=10-K&limit=5" \
-H "X-PAYMENT: <payment-token>"Response
{
"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"
}