Tools/Insider trades (Form 4)

insider.company

3 crread-only

Net insider activity for one company over a window: open-market buy vs sell value/shares and distinct buyer/seller counts. Answers 'are insiders net buying or selling this name right now?'

Parameters#

ParameterTypeDescription
tickerreqstringIssuer ticker, e.g. 'NVDA'
daysoptnumberLookback window in days (default 90, max 365)

Example call#

bash
curl -X POST https://arkolith.com/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "insider.company",
    "arguments": {
      "ticker": "NVDA",
      "days": 90
    }
  }
}'

Example response#

json
{
  "ticker": "NVDA",
  "window_days": 90,
  "buys": { "value_usd": 4200000, "shares": "38000", "distinct_insiders": 3 },
  "sells": { "value_usd": 91000000, "shares": "760000", "distinct_insiders": 5 },
  "net_open_market_usd": -86800000,
  "verdict": "net_selling"
}