Get cross-company insider trading
GET
/api/v1/public/intelligence/insiders/cross-company25 credits / callAPI key required
Discover insider trading patterns across multiple companies. Searches the entire universe to find insiders active across multiple companies, cluster buying patterns, and large transactions. Filter by insider name, transaction type, or date range.
Parameters
Query
Filter by insider name (partial match)
Transaction type: P (purchase), S (sale), A (grant), M (conversion)
Start date filter (ISO date)
End date filter (ISO date)
Maximum number of results (1-500, default 50)
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/intelligence/insiders/cross-company?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/intelligence/insiders/cross-company?limit=10&offset=0example · 200
{
"data": {
"transactions": [
{
"insiderName": "Hansen Kent A",
"insiderCik": "0001686017",
"issuerTicker": "KWY",
"issuerCik": "1072627",
"roles": [
"Officer"
],
"officerTitle": "CFO & EVP",
"transactionDate": "2026-06-15",
"shares": "150.000000",
"pricePerShare": "10.430000",
"formType": "4",
"filedAt": "2026-06-16 04:54:53"
},
{
"insiderName": "Fitzgerald John Taylor Maloney",
"insiderCik": "0001584349",
"issuerTicker": "KWY",
"issuerCik": "1072627",
"roles": [
"Director",
"Officer"
],
"officerTitle": "President and CEO",
"transactionDate": "2026-06-15",
"shares": "240.000000",
"pricePerShare": "10.430000",
"formType": "4",
"filedAt": "2026-06-16 04:51:36"
},
{
"insiderName": "Opaleye Management Inc.",
"insiderCik": "0001595855",
"issuerTicker": "ACOG",
"issuerCik": "1655923",
"roles": [
"10% Owner"
],
"officerTitle": null,
"transactionDate": "2026-06-15",
"shares": "4550.000000",
"pricePerShare": "5.989600",
"formType": "4",
"filedAt": "2026-06-16 02:10:31"
}
],
"clusterBuying": [
{
"ticker": "AADX",
"distinctInsiders": 4,
"windowStart": "2026-06-04",
"windowEnd": "2026-05-21 00:00:00"
},
{
"ticker": "ACCS",
"distinctInsiders": 3,
"windowStart": "2026-05-27",
"windowEnd": "2026-05-13 00:00:00"
},
{
"ticker": "ACON",
"distinctInsiders": 4,
"windowStart": "2026-05-12",
"windowEnd": "2026-04-28 00:00:00"
}
],
"clusterBuyingCount": 204,
"lookbackDays": 90,
"pagination": {
"limit": 3,
"offset": 0,
"total": 15662
}
}
}