SEC Insider Transactions (Form 4)
edgar_insider_transactionsInsider buying and selling for a U.S. public company, parsed from SEC Form 4 filings.
Form 4 is published as raw ownership XML, one document per filing, with the machine-readable file hidden behind an XSL-rendered URL. This resolves the ticker to a CIK, finds the most recent filings, fetches each XML document, and returns clean transactions: who traded, their role, the date, the SEC transaction code with its plain-English meaning, share count, price, computed dollar value, and shares held afterwards.
When to use: tracking insider sentiment, checking whether executives are buying or selling, auditing recent officer and director activity.
When NOT to use: you need institutional holdings (that is Form 13F), or derivative/option detail (only non-derivative transactions are returned), or non-U.S. issuers.
Args:
ticker (string, required): a ticker such as "AAPL", or a bare CIK such as "320193".
limit (integer, optional, default 5): how many recent filings to parse (1-20).
forms (string[], optional, default ["4"]): which ownership forms to include ("3", "4", "5").
Returns structuredContent: { "cik": "0000320193", "issuer": "Apple Inc.", "ticker": "AAPL", "count": 1, "filings": [{ "filedAt": "2026-08-13", "owner": "Newstead Jennifer", "ownerTitle": "SVP, GC and Secretary", "isOfficer": true, "isDirector": false, "transactions": [{ "date": "2026-08-11", "code": "S", "codeMeaning": "Open-market or private sale", "acquiredDisposed": "D", "shares": 1439, "pricePerShare": 307.75, "value": 442852.25, "sharesOwnedAfter": 40107 }], "documentUrl": "https://www.sec.gov/Archives/..." }], "source": "https://www.sec.gov/edgar" }
An individual filing that cannot be parsed is skipped rather than failing the call. If nothing at all is parseable the call errors and is not billed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| forms | No | Which ownership forms to include. Defaults to ["4"]. | |
| limit | No | How many recent ownership filings to parse (1-20). Default 5. | |
| ticker | Yes | Ticker symbol (e.g. "AAPL") or a bare SEC CIK (e.g. "320193"). |