Skip to main content
GET
/
v1
/
ownership
/
insider-transactions
Get Insider Transactions
curl --request GET \
  --url https://api.aries.com/v1/ownership/insider-transactions \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "symbol": "AAPL",
      "name": "BELL JAMES A",
      "share": 38527,
      "change": 1852,
      "filingDate": "2024-02-05",
      "transactionDate": "2024-02-01",
      "transactionCode": "M",
      "transactionPrice": 0
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string
required

Stock symbol, such as AAPL. Use it to narrow results to one company.

from
string

Optional start date in YYYY-MM-DD format. Use it to begin the research window.

to
string

Optional end date in YYYY-MM-DD format. Use it to end the research window.

Response

Insider transactions.

Insider transactions response