Insider Transactions
GET
/v1/insider-transactions/{symbol}
Get insider transactions for a company, including trades made by executives and directors.
Path Params
symbolstringrequired
Ticker symbol for the company
Query Params
startDatestringrequired
The starting date for the transactions
endDatestring
The ending date for the transactions. Defaults to today.
nextPageKeystring
Key used to get the next page of results. This is provided in the response when there are more pages available.
Headers
X-Api-Keystringrequired
API key for authentication
Responses
{ "nextPageKey": "33482_2024", "symbol": "AAPL", "items": { "type": ["Dispose", "Acquire", "Acquire"], "date": ["2024-02-01", "2024-03-15", "2024-03-16"], "ownerName": ["LOZANO MONICA C", "SUGAR RONALD D", "WAGNER SUSAN"], "ownerRelation": ["Director", "Director", "Director"], "ownerCik": [1179864, 1216519, 1059235], "method": ["Open Market", "Exercise", "Exercise"], "shares": [1516, 17000, 1210], "sharesHeld": [8607, 109311, 62491] } }
LANGUAGE
CURL REQUEST
1 curl --request GET \ 2 --url "https://api.marketrepo.com/v1/insider-transactions/AAPL?startDate=2024-01-01&endDate=2024-12-31" \ 3 --header 'X-Api-Key: YOUR_API_KEY'
RESPONSE
Click Try It! to start a request and see the response here!
application/json
200