Look up a filing by accession number
GET
/api/v1/public/edgar/accession/:accessionNumber5 credits / callAPI key required
Look up a filing or exhibit by its SEC accession number. Accepts both the dashed format (e.g. "0001193125-22-010026") and the compact 18-digit format. Returns filing metadata (company name, form type, filing date, exhibit count). When the filing is found only on SEC EDGAR and not in the local store, the response carries `isInDatabase: false`.
Parameters
Path
SEC accession number in dashed (0000000000-00-000000) or compact 18-digit format.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/edgar/accession/' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/edgar/accession/example · 200
{
"data": {
"accessionNumber": "0000320193-26-000013",
"cik": "320193",
"companyName": "Apple Inc.",
"exhibitCount": 4,
"filingDate": "2026-05-01T00:00:00.000Z",
"filingId": 1537388,
"formType": "10-Q",
"type": "filing",
"isInDatabase": true
}
}