Get current insider positions by CIK
GET
/api/v1/public/insider-positions/:cik3 credits / callAPI key required
Current open insider positions for a CIK. The CIK is tried as an issuer (company) first — returning every insider's position for that company — and falls back to an insider (reporting-person) CIK, returning that person's open positions across all issuers they have filed Form 4 for. The `lookupMode` field tells you which interpretation matched. Positions are derived from the most recent Form 4 `shares_owned_following` value.
Parameters
Path
SEC Central Index Key (1-10 digits)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/insider-positions/' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/insider-positions/example · 200
{
"data": {
"issuerCik": "320193",
"issuerName": "Apple Inc.",
"ticker": "AAPL",
"totalInsiders": 17,
"totalSharesHeld": 9277429,
"lookupMode": "issuer",
"positions": [
{
"insiderCik": "0001214128",
"insiderName": "LEVINSON ARTHUR D",
"title": "Director",
"isDirector": true,
"isOfficer": false,
"isTenPercentOwner": false,
"sharesOwned": 3699576,
"directOrIndirect": "D",
"lastFilingDate": "2026-05-30T00:30:27.000Z",
"periodOfReport": "2026-05-26T22:00:00.000Z",
"lastTransactionDate": "2026-05-26T22:00:00.000Z",
"ticker": "AAPL"
},
{
"insiderCik": "0001214156",
"insiderName": "COOK TIMOTHY D",
"title": "Chief Executive Officer, Director",
"isDirector": true,
"isOfficer": true,
"isTenPercentOwner": false,
"sharesOwned": 3284984,
"directOrIndirect": "D",
"lastFilingDate": "2026-04-04T00:30:41.000Z",
"periodOfReport": "2026-03-31T22:00:00.000Z",
"lastTransactionDate": "2026-04-01T22:00:00.000Z",
"ticker": "AAPL"
}
]
}
}