Live SEC API use case
SEC Company Lookup API
A company-resolution workflow for apps that receive issuer names from another system and need the right ticker or CIK before calling SEC feeds.
GET /v1/sec/companies/search?q=apple&limit=10
{
"data": [
{
"ticker": "AAPL",
"cik": "0000320193",
"title": "Apple Inc.",
"filingCount": 42
}
],
"meta": { "count": 1, "query": "apple" }
}
Workflow Fit
This page shows how the implemented SEC endpoints fit common buyer workflows, examples, and pricing tiers.
- Entity resolution before filing-feed calls.
- Autocomplete for internal SEC monitoring tools.
- Ticker and CIK normalization for imported watchlists.
Use Case FAQ
Does lookup require knowing a CIK first?
No. The endpoint accepts ticker, CIK, or company-name search text.
Can lookup be used before watchlist polling?
Yes. It is designed to normalize identifiers before calling feed endpoints.