Evaluate filing search
Run the issuer, form, citation, and response-shape checks that matter to your team before you commit to an integration.
Search a company’s filing history
GET /v1/filings/latest. For a known record, use the accession-number route. For a question about filing text, choose a content-search endpoint instead of treating the filing manifest as the answer.
Search the content of filings
GET /v1/search/semantic; q is required. The response returns matching sections with citation fields that point back to the SEC source. Use mode=keyword, mode=semantic, or mode=hybrid according to the retrieval behavior you need.
A practical research sequence
- Find the filing with
GET /v1/filingsor retrieve the newest form withGET /v1/filings/latest. - Keep
accessionNumber,filingDate, andfilingUrlin your research record. - Retrieve a named section by accession, or search sections with a concrete question.
- Verify any excerpt against the linked SEC filing before it becomes an investor, legal, or compliance conclusion.
Filings and search are different jobs
| Need | Endpoint family |
|---|---|
| Filter filing records by issuer, form, or date | /v1/filings |
| Retrieve one issuer’s newest filing | /v1/filings/latest |
| Retrieve a known filing | /v1/filings/{accession_number} |
| Search exact text | /v1/search/fulltext |
| Search related concepts | /v1/search/semantic |
| Find cited passages in extracted sections | /v1/sections/search |

