Get insider discovery data
GET
/api/v1/public/intelligence/:ticker/insiders10 credits / callAPI key required
Insider positions for a company with cluster buying detection. Returns all insiders with roles, net share activity (trailing 12m), and recent open-market purchases (last 90 days). Flags cluster buying when 3+ distinct insiders buy within any 14-day window.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/intelligence/AAPL/insiders' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/intelligence/AAPL/insidersexample · 200
{
"data": {
"ticker": "AAPL",
"cik": "0000320193",
"insiders": [
{
"cik": "0001690882",
"name": "Austin Wanda M",
"roles": [
"Director"
],
"officerTitle": null,
"lastFiledAt": "2026-05-22 00:54:33",
"totalFilings": 123,
"netSharesTrailing12m": 1255,
"netDirection": "Buy",
"netSharesSold12m": 0,
"transactionBreakdown": {
"M": 1255
}
},
{
"cik": "0002100523",
"name": "Borders Ben",
"roles": [
"Officer"
],
"officerTitle": "Principal Accounting Officer",
"lastFiledAt": "2026-05-13 00:31:29",
"totalFilings": 164,
"netSharesTrailing12m": -449,
"netDirection": "Sell",
"netSharesSold12m": -1274,
"transactionBreakdown": {
"F": -892,
"M": 1717,
"S": -1274
}
},
{
"cik": "0001214128",
"name": "LEVINSON ARTHUR D",
"roles": [
"Director"
],
"officerTitle": null,
"lastFiledAt": "2026-05-09 00:30:09",
"totalFilings": 154,
"netSharesTrailing12m": -460000,
"netDirection": "Sell",
"netSharesSold12m": -390000,
"transactionBreakdown": {
"G": -71113,
"M": 1113,
"S": -390000
}
}
],
"recentPurchases": [],
"clusterBuyingDetected": false,
"pagination": {
"limit": 3,
"offset": 0,
"total": 17
}
}
}