Government
SEC EDGAR recent filings by CIK API
List the recent SEC filings for a company by CIK from the keyless data.sec.gov submissions API, normalized into a flat schema (form, filing/report date, accession, primary document, description, ready-to-open archive URL) with an optional form-type filter. Answers 'what did company CIK X file recently?','list the 10-K filings for filer Y'.
Price$0.01per request
MethodPOST
Route/v1/gov/edgar-submissions
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
govsecedgarfilingssubmissions10-k8-kcik
API URL
Integration docshttps://x402.hexl.dev/v1/gov/edgar-submissionsExample request
{
"cik": "320193",
"formType": "10-K",
"limit": 1
}Example response
{
"cik": "0000320193",
"company": "Apple Inc.",
"tickers": [
"AAPL"
],
"exchanges": [
"Nasdaq"
],
"sicDescription": "Electronic Computers",
"filings": [
{
"form": "10-K",
"filingDate": "2025-11-01",
"reportDate": "2025-09-30",
"accessionNumber": "0000320193-25-000073",
"primaryDocument": "aapl-20250930.htm",
"description": "Annual report",
"url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000073/aapl-20250930.htm"
}
]
}Input schema
{
"type": "object",
"required": [
"cik"
],
"properties": {
"cik": {
"type": "string",
"examples": [
"320193",
"0000320193"
]
},
"formType": {
"type": "string",
"examples": [
"10-K",
"8-K",
"4"
]
},
"limit": {
"type": "number",
"minimum": 1,
"maximum": 100,
"default": 20
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}