Skip to main content
GET
/
v1
/
institutional
/
ownership
Get Institutional Ownership
curl --request GET \
  --url https://api.aries.com/v1/institutional/ownership \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "symbol": "TSLA",
      "cusip": "023135106",
      "name": "Worth Asset Management, LLC",
      "share": 1743,
      "change": -57,
      "value": 197000,
      "putCall": ""
    }
  ]
}

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

cusip
string
required

CUSIP security identifier. Required when this endpoint needs institutional ownership by CUSIP.

Example:

"023135106"

from
string<date>
required

Start date in YYYY-MM-DD format. Enter the first date to include in the research window.. Required.

Example:

"2024-01-01"

to
string<date>
required

End date in YYYY-MM-DD format. Enter the last date to include in the research window.. Required.

Example:

"2024-12-31"

symbol
string

Optional stock ticker symbol filter, such as AAPL. Use it to narrow results to one company.

Example:

"TSLA"

Response

Institutional ownership data.

Institutional ownership response