insider.clusters
5 crread-onlyMarket-wide insider cluster scan: companies where several distinct insiders made open-market buys (or sells) inside a window — the high-conviction cluster signal. Returns tickers ranked by distinct-insider count and total value.
Parameters#
| Parameter | Type | Description |
|---|---|---|
daysopt | number | Lookback window in days (default 30, max 180) |
min_insidersopt | number | Minimum distinct insiders to qualify (default 2) |
sideopt | string | Cluster direction (default 'buy')one of: buy, sell |
limitopt | number | Max tickers (1-100, default 25) |
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.clusters",
"arguments": {
"side": "buy",
"days": 30,
"min_insiders": 3
}
}
}'Example response#
json
{
"side": "buy",
"window_days": 30,
"clusters": [
{ "ticker": "SMCI", "distinct_insiders": 4, "total_value_usd": 6100000, "buys": 7 },
{ "ticker": "PARA", "distinct_insiders": 3, "total_value_usd": 2800000, "buys": 5 }
]
}