List filings
stocks_filingsRetrieve a company's SEC EDGAR filings, sorted by filing date, with optional filters for form type and date range. Supports pagination to navigate through results.
Instructions
List a company's SEC EDGAR filings (most recent first), optionally filtered by form type and filed-date range. Paginate with cursor/limit, or set max_items to auto-collect across pages in one call. Returns filing metadata and accession numbers; pass an accession to stocks_filing for its document list, or to stocks_sections / stocks_section for its extracted text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Upper bound on filed_at, YYYY-MM-DD. | |
| form | No | Comma-separated exact form types, e.g. "10-K,10-Q". | |
| from | No | Lower bound on filed_at, YYYY-MM-DD. | |
| limit | No | Page size (endpoint-specific default and max). | |
| cursor | No | Opaque cursor from a previous response's meta.next_cursor. | |
| ticker | Yes | US equity ticker, e.g. AAPL. | |
| max_items | No | If set, auto-paginate across pages and return up to this many items (ignores cursor). |