SEC Filings Feed
edgar_filings_feedRecent SEC filings for a company, newest first, with 8-K item codes translated to plain English.
A general-purpose filings feed: any form type, or a specific set (8-K for material events, 10-K/10-Q for periodic reports, S-1 for new-issue prospectuses, SC 13D/13G for activist and passive stakes). 8-K filings include their item numbers (e.g. "5.02") decoded into a label ("Departure/appointment of directors or officers") rather than leaving you to look up the code.
When to use: monitoring a company's material-event stream, building a filings watchlist, or finding a specific filing type.
When NOT to use: you need the parsed FINANCIAL content of a filing (use edgar_financials) or insider trades (use edgar_insider_transactions).
Args:
ticker (string, required): a ticker such as "AAPL", or a bare CIK such as "320193".
forms (string[], optional): filter to specific form types, e.g. ["8-K"] or ["10-K","10-Q"]. Omit for all forms.
limit (integer, optional, default 20): maximum filings to return (1-100).
Returns structuredContent: { "cik": "0000320193", "entity": "Apple Inc.", "ticker": "AAPL", "count": 1, "filings": [{ "form": "8-K", "filedAt": "2026-08-01", "reportDate": "2026-07-31", "items": [{ "code": "2.02", "label": "Results of operations and financial condition" }], "documentUrl": "https://www.sec.gov/Archives/..." }], "source": "https://www.sec.gov/edgar" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| forms | No | Filter to these form types, e.g. ["8-K"]. Omit for all forms. | |
| limit | No | Maximum filings to return, newest first. Default 20. | |
| ticker | Yes | Ticker symbol (e.g. "AAPL") or a bare SEC CIK (e.g. "320193"). |