Get insider transaction history
GET
/api/v1/public/intelligence/:ticker/insider-transactions5 credits / callAPI key required
Detailed insider transaction history for a company from Form 4 filings. Returns individual buy/sell transactions with insider name, title, shares, price, and transaction codes. Supports pagination.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Query
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/AAPL/insider-transactions?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/intelligence/AAPL/insider-transactions?limit=10&offset=0example · 200
{
"data": {
"ticker": "AAPL",
"cik": "0000320193",
"summary": {
"totalInsiders": 2,
"totalTransactions": 6,
"buys": 0,
"sells": 6,
"netShares": -371274,
"netValue": -87110182.31
},
"transactions": [
{
"insiderName": "LEVINSON ARTHUR D",
"insiderCik": "0001214128",
"insiderTitle": "Director",
"transactionDate": "2026-05-26T22:00:00.000Z",
"transactionCode": "G",
"transactionType": "Disposition (Non Open Market)",
"shares": 65000,
"pricePerShare": 0,
"value": 0,
"acquiredDisposed": "D",
"directOrIndirect": "D",
"sharesOwnedFollowing": 3699576,
"filedAt": "2026-05-30T00:30:27.000Z",
"formType": "4"
},
{
"insiderName": "LEVINSON ARTHUR D",
"insiderCik": "0001214128",
"insiderTitle": "Director",
"transactionDate": "2026-05-26T22:00:00.000Z",
"transactionCode": "S",
"transactionType": "Open Market Sale",
"shares": 50000,
"pricePerShare": 311.02,
"value": 15551000,
"acquiredDisposed": "D",
"directOrIndirect": "D",
"sharesOwnedFollowing": 3764576,
"filedAt": "2026-05-30T00:30:27.000Z",
"formType": "4"
},
{
"insiderName": "Borders Ben",
"insiderCik": "0002100523",
"insiderTitle": "Principal Accounting Officer",
"transactionDate": "2026-05-07T22:00:00.000Z",
"transactionCode": "S",
"transactionType": "Open Market Sale",
"shares": 1274,
"pricePerShare": 290,
"value": 369460,
"acquiredDisposed": "D",
"directOrIndirect": "D",
"sharesOwnedFollowing": 38713,
"filedAt": "2026-05-13T00:31:29.000Z",
"formType": "4"
}
],
"pagination": {
"limit": 3,
"offset": 0,
"total": 144
}
}
}