SEC filings & market structure
Insider Transactions
Open-market trades, option exercises, RSU vesting, gifts, and tax-withholding events by corporate insiders — officers, directors, and 10%+ owners — disclosed on SEC Forms 4 and 5. Pulled from EDGAR and normalized with the insider, their role, the SEC transaction code, shares, price, and total value.
Endpoint
GET /v1/insider-transactionsSourceSEC EDGAR — Forms 4 & 5
Authx-api-key — a free key works
What it returns
One record per reported transaction line, with the reporting owner(s), the security, and the trade. Key fields:
- Issuer —
ticker,company_name,company_cik - The insider(s) —
officer_name,officer_title,is_officer,is_director,is_ten_percent_owner, plus the fullreporting_owners[]array (multiple filers per form) - The transaction —
transaction_code(P / S / A / M / F …),transaction_type(buy / sell),transaction_nature,acquired_disposed,is_derivative,security_title - Amounts —
shares,price_per_share,total_value,shares_owned_after - Plan & dates —
aff10b5one(10b5-1 trading-plan flag),transaction_date,disclosure_date,filing_date,reporting_lag_days - Provenance —
footnotes[],accession_number,document_type,schema_era,data_source,sec_filing_url
Filters
| ticker | Stock symbol, e.g. AAPL. Case-insensitive. |
| company_cik | SEC CIK (10-digit, zero-padded) — alternative to ticker. |
| officer_name | Full or partial insider name; case-insensitive substring. |
| transaction_type | buy or sell. |
| transaction_codes | OR-filter on raw SEC codes — ['P'] open-market buys, ['S'] sales, ['M'] option exercises. |
| is_derivative | true for options / RSUs / warrants, false for common-stock rows. |
| min_value | Only trades with total_value ≥ this amount (USD). |
| aff10b5one | 10b5-1 trading-plan flag — '1' = plan adopted, '0' = none. |
| since / until | ISO dates (YYYY-MM-DD) bounding the window. |
| include_baseline | Also return matching Form 3 initial-ownership baselines. |
| include_non_open_market | Include gifts, transfers, conversions, and tax-withholding events alongside open-market trades. |
| data_source | bulk_v2 (default — full SEC bulk corpus) or the legacy collection. |
Advanced (bulk_v2) filters: reporting_owner_name, reporting_owner_cik, row_type, trans_codes, schema_era, plus sort_by / sort_order / limit — see the OpenAPI spec.
Example request
curl "https://api.keyvex.com/v1/insider-transactions?ticker=AAPL&limit=1" \
-H "x-api-key: YOUR_KEY"
Response
{
"results": [
{
"ticker": "AAPL",
"company_name": "Apple Inc.",
"officer_name": "Newstead Jennifer",
"officer_title": "SVP, GC and Secretary",
"is_officer": true,
"transaction_code": "F",
"transaction_type": "sell",
"security_title": "Common Stock",
"shares": 32528,
"price_per_share": 250.12,
"total_value": 8135903.36,
"shares_owned_after": 27680,
"transaction_date": "2026-03-15",
"disclosure_date": "2026-03-17",
"is_derivative": false,
"footnotes": [
{ "ref": "F2", "text": "Shares withheld by Apple to satisfy tax withholding on vesting of RSUs. No shares were sold." }
],
"sec_filing_url": "https://www.sec.gov/Archives/edgar/data/320193/..."
}
],
"count": 1,
"has_more": true
}
Example questions you can answer
- "Show me open-market insider buys in
AAPLover the last quarter (transaction_codes=['P'])." - "Which executives sold the most stock by total value this month?"
- "Cluster buying — tickers where 3+ insiders bought in the same week."
- "All Form 4 activity for a given officer across every company they're an insider at."
Related datasets
Query insider transactions from your AI
Hand any AI your key + the OpenAPI spec and it can pull this dataset directly. Free key = full data, 60 requests/day.
Get a free key OpenAPI spec → REST docs →