insider.company
3 crread-onlyNet 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#
| Parameter | Type | Description |
|---|---|---|
tickerreq | string | Issuer ticker, e.g. 'NVDA' |
daysopt | number | Lookback 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"
}