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?' The ticker resolves to ONE issuer, the SEC CIK with the newest Form 4 under that symbol, and the window covers every filing by that issuer whatever symbol the filer typed; `issuer_resolution` names it and any other issuer whose rows share the symbol. Pass `issuer_cik` to pin a specific issuer. Cost: 3 credits per call.

Parameters#

ParameterTypeDescription
tickerreqstringIssuer ticker, e.g. 'NVDA'
issuer_cikoptstringOptional SEC issuer CIK to pin with `ticker`. Default: the CIK with the newest filing under the symbol.
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"
}