Skip to main content
GET
/
institutional-ownership
Get the equity holdings of an investment manager
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/institutional-ownership \
  --header 'Authorization: Bearer <token>'
{
  "institutional-ownership": [
    {
      "ticker": "<string>",
      "investor": "<string>",
      "report_period": "2023-12-25",
      "price": 123,
      "shares": 123,
      "market_value": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

investor
string

The name of the investment manager

ticker
string

The ticker symbol, if queried by investor.

limit
integer
default:10

The maximum number of holdings to return (default: 10).

Response

Institutional ownership response

institutional-ownership
object[]