All tools
SEC EDGAR
US securities filings straight from the SEC: full-text search across every 10-K, 10-Q, 8-K and S-1, and each company's recent filing list.
Search filings
/searchsync$0.01 / call
Full-text search across all SEC filings since 2001. Returns matching filings with the company name, CIK, form type, filing date and a link to the document. Good for finding who mentioned a topic, or a company's latest 10-K.
Input
| Field | Type | Required | Description |
|---|---|---|---|
| query | string | yes | Search terms. Quote phrases: "artificial intelligence risk". |
| forms | string | — | Comma-separated form types to restrict to, e.g. "10-K,8-K". |
| limit | integer | — | Max filings to return (default 20). |
Run it
curl -s https://sooma.dev/v1/run \
-H "Authorization: Bearer $SOOMA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"sec-edgar","endpoint":"/search","input":{"query":"\"generative AI\" risk factors","forms":"10-K","limit":5}}'
Company filings
/filingssync$0.01 / call
A company's profile (name, tickers, SIC industry, state) and its most recent filings by CIK number. Find the CIK with /search or from the company's SEC page.
Input
| Field | Type | Required | Description |
|---|---|---|---|
| cik | string | yes | SEC Central Index Key, digits only, e.g. "320193" for Apple. |
| form | string | — | Only this form type, e.g. "10-K". |
| limit | integer | — | Max filings to return (default 20). |
Run it
curl -s https://sooma.dev/v1/run \
-H "Authorization: Bearer $SOOMA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"sec-edgar","endpoint":"/filings","input":{"cik":"320193","form":"10-K","limit":5}}'