Default
Insider Transactions
Company insider transactions data sourced from <code>Form 3,4,5</code>, SEDI and relevant companies' filings. This endpoint covers US, UK, Canada, Australia, India, and all major EU markets. Limit to 100 transactions per API call.
get/stock/insider-transactions
Query parameters
symbolstring required
Symbol of the company: AAPL. Leave this param blank to get the latest transactions.
fromstring date
From date: 2020-03-15.
tostring date
To date: 2020-03-16.
Response
successful operation
Example response
{
"symbol": "symbol",
"data": [
{
"symbol": "symbol",
"filingDate": "2000-01-23",
"change": 6,
"name": "name",
"transactionPrice": 1.4658129,
"share": 0,
"transactionCode": "transactionCode",
"transactionDate": "2000-01-23"
},
{
"symbol": "symbol",
"filingDate": "2000-01-23",
"change": 6,
"name": "name",
"transactionPrice": 1.4658129,
"share": 0,
"transactionCode": "transactionCode",
"transactionDate": "2000-01-23"
}
]
}