Docs / API reference
GET /v1/insider/{ticker}
Parsed insider transactions from SEC Form 4 (and 3/5/144): who traded, their role, the transaction code, share count, price, and whether it was an open-market decision or an automatic, pre-scheduled sale. This is the flagship endpoint — the parsing is the value, not the raw filing.
Read the transaction code. Code
P is an open-market purchase — the
insider spent their own money, the one trade that carries a view. Sales flagged plan_10b5_1
were scheduled in advance and carry little signal. Don't treat every "insider sale" as bearish.Parameters
| Param | In | Values |
|---|---|---|
ticker | path | US ticker, or latest (market-wide biggest buys), or clusters (several insiders buying one stock) |
form | query | 4 (default), 3, 5, or 144 (notice of proposed sale) |
limit | query | 1–100 (default 6) |
min_value | query | for latest/clusters: minimum buy value in USD (default 50000) |
days, min_insiders | query | for clusters: lookback window (default 15) and minimum distinct insiders (default 3) |
Request
curl "https://api.edgrapi.com/v1/insider/NVDA?form=4&limit=10" -H "X-API-Key: edgr_..."
curl "https://api.edgrapi.com/v1/insider/latest?min_value=250000" -H "X-API-Key: edgr_..."
curl "https://api.edgrapi.com/v1/insider/clusters?days=15&min_insiders=3" -H "X-API-Key: edgr_..."
Response — a company
{
"ticker": "NVDA", "cik": "0001045810", "company": "NVIDIA CORP", "count": 1,
"filings": [
{ "filed": "2025-08-14", "owner": "Huang Jen-Hsun", "officer_title": "President and CEO",
"url": "https://www.sec.gov/Archives/edgar/data/1045810/.../form4.xml",
"transactions": [
{ "code": "S", "shares": 100000, "price": 182.31, "value": 18231000,
"plan_10b5_1": true } ] }
],
"source": "SEC EDGAR ownership filings"
}
Response — latest / clusters
{
"scope": "market-wide open-market insider purchases (code P)",
"count": 25, "buys": [ { "ticker": "ACME", "owner": "Jane Roe",
"officer_title": "Director", "value": 512000, "filed": "2025-08-20" } ],
"source": "SEC EDGAR Form 4 (real-time feed)"
}