Skip to content

Insider Transactions API

Retrieve insider trading data from SEC Form 4 filings. Track executive purchases, sales, option exercises, and ownership changes for any ticker.

GET /v1/insidertransactions/{market}/{ticker}

Requires API key via token query parameter.

ParameterTypeRequiredDescription
marketstringYesMarket identifier (e.g., S&P 500, NASDAQ)
tickerstringYesStock ticker symbol (e.g., AAPL, MSFT)
ParameterTypeRequiredDescription
tokenstringYesYour API key
dateFromstringNoStart date (YYYY-MM-DD)
dateTostringNoEnd date (YYYY-MM-DD)
Terminal window
curl "https://api.finbrain.tech/v1/insidertransactions/S%26P%20500/AAPL?token=YOUR_API_KEY"
{
"ticker": "AMZN",
"name": "Amazon.com Inc.",
"insiderTransactions": [
{
"date": "Mar 08 '24",
"insiderTradings": "Selipsky Adam",
"relationship": "CEO Amazon Web Services",
"transaction": "Sale",
"cost": 176.31,
"shares": 500,
"USDValue": 88155,
"totalShares": 133100,
"SECForm4Date": "2024-03-11T16:34:00.000Z",
"SECForm4Link": "http://www.sec.gov/Archives/edgar/data/1018724/000101872424000058/xslF345X05/wk-form4_1710189274.xml"
}
]
}
FieldTypeDescription
tickerstringStock ticker symbol
namestringCompany name
insiderTransactionsarrayArray of transaction objects
FieldTypeDescription
datestringTransaction date (e.g., “Mar 08 ‘24”)
insiderTradingsstringInsider name
relationshipstringInsider’s role/relationship
transactionstringType of transaction
costnumberTransaction price per share
sharesintegerNumber of shares
USDValueintegerTotal transaction value in USD
totalSharesintegerTotal shares owned after transaction
SECForm4DatestringSEC Form 4 filing date (ISO 8601)
SECForm4LinkstringLink to SEC Form 4 filing
TypeDescription
BuyOpen market purchase
SaleOpen market sell
Option ExerciseStock option conversion
GiftShares donated
Automatic10b5-1 plan execution
CodeErrorDescription
400Bad RequestInvalid market or ticker
401UnauthorizedInvalid or missing API key
404Not FoundTicker not found
500Internal Server ErrorServer-side error