Default
ETFs Holdings
Get full ETF holdings/constituents. This endpoint has global coverage. Widget only shows top 10 holdings. A list of supported ETFs can be found <a href="/api/v1/etf/list?token=" target="_blank">here</a>.
get/etf/holdings
Query parameters
symbolstring
ETF symbol.
isinstring
ETF isin.
skipinteger
Skip the first n results. You can use this parameter to query historical constituents data. The latest result is returned if skip=0 or not set.
datestring
Query holdings by date. You can use either this param or <code>skip</code> param, not both.
Response
successful operation
Example response
{
"symbol": "symbol",
"atDate": "2000-01-23",
"holdings": [
{
"symbol": "symbol",
"cusip": "cusip",
"name": "name",
"share": 6.0274563,
"percent": 1.4658129,
"value": 5.962134,
"isin": "isin",
"assetType": "assetType"
},
{
"symbol": "symbol",
"cusip": "cusip",
"name": "name",
"share": 6.0274563,
"percent": 1.4658129,
"value": 5.962134,
"isin": "isin",
"assetType": "assetType"
}
],
"numberOfHoldings": 0
}