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

Create a free account to run these investor-grade stock endpoints with your own key. Create a free account to run the full workflow.

Send a request to view the response.

Path Parameters

  • ticker: required ticker symbol

Query Parameters

  • start: optional inclusive start date
  • end: 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_date
  • transaction_code
  • shares
  • price
  • value
  • owner_name
  • owner_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"

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.