Skip to main content
GET
/
v1
/
institutional
/
portfolio
Get Institutional Portfolio
curl --request GET \
  --url https://api.aries.com/v1/institutional/portfolio \
  --header 'Authorization: Bearer <token>'
{
  "holdings": [
    {
      "symbol": "IFRX",
      "cusip": "N44821101",
      "name": "INFLARX NV",
      "share": 0,
      "change": -73860,
      "value": 0,
      "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

cik
string
required

Central Index Key (CIK) of the institution. Required.

Example:

"0001067983"

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"

Response

Institutional portfolio holdings.

Institutional portfolio response