v2

latestOpenAPI 3.1.0Proprietary2026-08-05143259.2 KB
symbols

30-day insider-transaction rollup for one ticker

Aggregated SEC Form 4 activity over the trailing 30 days: buy/sell transaction counts, dollar volumes, the share of transactions executed under pre-arranged 10b5-1 plans, and the most active insiders ranked by absolute net value (buys minus sells).

get/api/symbols/{ticker}/insider-summary/

Path parameters

tickerstring required

Accepts the same ticker forms as the symbol detail endpoint: bare crypto names resolve to their <SYM>-USD listing, and delisted or renamed symbols stay addressable. Crypto and foreign listings have no Form 4 flow, so they return zeros.

Response

Insider activity stats for the window. Zeros mean no filings in the window for a real listing; a ticker no symbol owns returns 404 instead.

tickerstring required
daysinteger required
total_transactionsinteger required
buy_countinteger required
sell_countinteger required
buy_value_usdstring nullable

Decimal string in USD; null when the window has no buys.

sell_value_usdstring nullable

Decimal string in USD; null when the window has no sells.

pct_10b5_1integer required

Share of transactions executed under a pre-arranged 10b5-1 plan, in percent.

Example response

{
  "days": 30,
  "buy_value_usd": "1240000.00",
  "sell_value_usd": "224580213.05",
  "top_insiders": [
    {
      "name": "STEVENS MARK A",
      "net_value": "-221102600.00"
    }
  ]
}