GET
/
custom
/
org
/
{organization_uuid}
/
reports
/
holdings
/
constituents
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/reports/holdings/constituents/ \
  --header 'X-Api-Key: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "symbol": "<string>",
      "total_market_value": "<string>",
      "total_quantity": "<string>",
      "num_clients": 123
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string
required

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

symbol
string

Filter by ticker symbol

Response

200 - application/json

The response is of type object.