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.

from
string

Start date (YYYY-MM-DD, optional).

to
string

End date (YYYY-MM-DD, optional).

Response

Insider transactions.

Insider transactions response