GET/companies/{identifier}/filings

Get SEC filings for a company (10-K, 10-Q, 8-K, etc.)

$0.01 per request

Parameters

NameTypeRequiredDescription
identifierstringYesStock ticker or CIK number
form_typestringNoFilter by form type (e.g., 10-K, 10-Q, 8-K)
limitintegerNoMax results to return (default: 20, max: 100)
offsetintegerNoNumber 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"
}