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": ""
    }
  ]
}

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 of the security. Required.

Example:

"023135106"

from
string<date>
required

Start date (YYYY-MM-DD). Required.

Example:

"2024-01-01"

to
string<date>
required

End date (YYYY-MM-DD). Required.

Example:

"2024-12-31"

symbol
string

Stock ticker symbol (optional).

Example:

"TSLA"

Response

Institutional ownership data.

Institutional ownership response