openinsider.com APIopeninsider.com ↗
Access SEC Form 4 insider trading filings, cluster buys, top monthly purchases, and a full screener via the OpenInsider API. 6 endpoints, real-time data.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/5cfdfa29-94a5-47c6-90fa-08b86361565a/get_latest_insider_trading' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch the latest insider trading filings (purchases and sales). Returns up to 100 of the most recent SEC Form 4 filings.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of insider trade objects with Filing Date, Trade Date, Ticker, Company Name, Insider Name, Title, Trade Type, Price, Qty, Owned, ΔOwn, Value"
},
"sample": {
"data": [
{
"X": "",
"1d": "",
"1m": "",
"1w": "",
"6m": "",
"Qty": "-98,039",
"Owned": "2,040,222",
"Price": "$3.52",
"Title": "CEO of Clover Care Services",
"Value": "-$345,097",
"ΔOwn": "-5%",
"Ticker": "CLOV",
"Trade Date": "2026-05-13",
"Trade Type": "S - Sale",
"Filing Date": "2026-05-13 21:47:43",
"Company Name": "Clover Health Investments, Corp. /De",
"Insider Name": "Priest Brady Patrick"
}
],
"status": "success"
}
}About the openinsider.com API
The OpenInsider API exposes 6 endpoints covering SEC Form 4 insider trading data sourced from OpenInsider.com, returning up to 100 of the most recent filings per call. Endpoints like get_latest_cluster_buys and screener let you filter by insider role, sector, trade type, and price range, while get_insider_buy_sell_chart_data provides aggregated daily purchase and sale counts going back through the full historical dataset.
What the API covers
All six endpoints deal with insider trading activity as reported via SEC Form 4 filings. Core fields across most endpoints include Filing Date, Trade Date, Ticker, Company Name, Insider Name, Title, Trade Type, Price, Qty (shares), Owned (shares held after trade), ΔOwn (ownership change percentage), and Val (dollar value of the trade). The get_latest_cluster_buys endpoint additionally returns an Industry label and an Ins field representing the count of distinct insiders buying the same company within a short window — a signal that distinguishes coordinated buying from a single executive's activity.
Screener and filtering
The screener endpoint is the most configurable. It accepts optional parameters including is_ceo, is_cfo to scope results by executive role, sector and industry for SIC code-based filtering, max_price to limit by share price, sales to include or exclude sale transactions, and page for pagination. The ticker parameter works across both the screener and the dedicated get_ticker_insider_trades endpoint, letting you pull all recorded filings for a specific symbol.
Historical and aggregate data
get_insider_buy_sell_chart_data returns daily aggregate rows — Date (YYMMDD), Purchases count, Sales count, Purchase Value, and Sale Value — drawn from the full historical CSV dataset on OpenInsider. Both start_date and end_date should be supplied together in YYMMDD format; providing only start_date returns all records from that date forward. This endpoint is oriented toward time-series analysis of insider sentiment rather than individual trade-level detail.
Top trades and freshness
get_top_insider_purchases_month returns purchases ranked by trade value over the prior 30 days, making it useful for quickly identifying the largest dollar-value conviction bets. get_latest_insider_trading returns up to 100 of the most recently filed trades regardless of company or role. All endpoints reflect what OpenInsider has processed from SEC EDGAR at the time of the request.
- Monitor real-time insider buying signals by polling
get_latest_insider_tradingfor new Form 4 filings - Detect cluster buy events where multiple executives purchase shares of the same company using
get_latest_cluster_buys - Rank the largest dollar-value insider purchases over the past month with
get_top_insider_purchases_month - Filter CEO and CFO trades within a specific SIC sector using the
screenerendpoint'sis_ceo,is_cfo, andsectorparameters - Build historical buy/sell ratio charts by querying
get_insider_buy_sell_chart_datawith astart_dateandend_date - Pull a full insider activity history for a single stock using
get_ticker_insider_tradeswith a ticker symbol - Screen for low-priced stocks with recent insider purchases by combining
max_priceandsales=0in the screener
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does OpenInsider have an official developer API?+
What does the `screener` endpoint return and how do I filter it?+
is_ceo or is_cfo for role, sector and industry for SIC codes, max_price for share price ceiling, sales to include or exclude sale transactions, and ticker to scope to a single symbol. Use page to step through results.What does the `Ins` field in cluster buy results represent?+
Ins field in get_latest_cluster_buys results is the count of distinct insiders who purchased shares of the same company within a short period. A higher count indicates more individuals at the company are buying concurrently, which is the defining characteristic of a cluster buy versus an isolated executive purchase.