Insider Tradings
Retrieve insider purchase and sale history for a ticker, filtered by transaction date range.
Use this endpoint when you need insider transaction history tied to a security.
Endpoint
GET /securities/{ticker}/insider_tradings
Test request
/securities/AAPL/insider_tradings?start=2024-01-01&end=2024-12-31
Send a request to view the response.
Path Parameters
ticker: required ticker symbol
Query Parameters
start: optional inclusive start dateend: optional inclusive end date
The backend filters to transaction codes P and S.
Response
The response returns the security record with insider_tradings.
Typical insider-trading fields include:
transaction_datetransaction_codesharespricevalueowner_nameowner_title
Example Request
curl -H "Authorization: Bearer $your_api_key" \
"https://api.apifinance.ai/securities/AAPL/insider_tradings?start=2024-01-01&end=2024-12-31"
Related Endpoints
Next step
Run this endpoint with your own API key
Use the playground to inspect the response first, then create a key and move into implementation once the payload fits your product.