curl --request GET \
--url https://api.aries.com/v1/etf/holdings \
--header 'Authorization: Bearer <token>'{
"data": {
"holdings": [
{
"assetType": "Equity",
"cusip": "037833100",
"isin": "US0378331005",
"name": "Apple Inc",
"percent": 7.171259880065918,
"share": 1210000000,
"symbol": "AAPL",
"value": 464000000000
},
{
"assetType": "Equity",
"cusip": "594918104",
"isin": "US5949181045",
"name": "Microsoft Corp",
"percent": 6.791339874267578,
"share": 790000000,
"symbol": "MSFT",
"value": 439000000000
},
{
"assetType": "Equity",
"cusip": "023135106",
"isin": "US0231351067",
"name": "Amazon.com Inc",
"percent": 3.60932993888855,
"share": 1010000000,
"symbol": "AMZN",
"value": 233000000000
}
],
"numberOfHoldings": 504,
"symbol": "SPY"
}
}Retrieve complete list of ETF constituent holdings with percentage weights and share counts. Analyze fund composition and concentration risk.
Use Case: Check top 10 holdings of QQQ ETF to understand tech sector concentration.
curl --request GET \
--url https://api.aries.com/v1/etf/holdings \
--header 'Authorization: Bearer <token>'{
"data": {
"holdings": [
{
"assetType": "Equity",
"cusip": "037833100",
"isin": "US0378331005",
"name": "Apple Inc",
"percent": 7.171259880065918,
"share": 1210000000,
"symbol": "AAPL",
"value": 464000000000
},
{
"assetType": "Equity",
"cusip": "594918104",
"isin": "US5949181045",
"name": "Microsoft Corp",
"percent": 6.791339874267578,
"share": 790000000,
"symbol": "MSFT",
"value": 439000000000
},
{
"assetType": "Equity",
"cusip": "023135106",
"isin": "US0231351067",
"name": "Amazon.com Inc",
"percent": 3.60932993888855,
"share": 1010000000,
"symbol": "AMZN",
"value": 233000000000
}
],
"numberOfHoldings": 504,
"symbol": "SPY"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
(Optional) ETF ticker symbol
(Optional) ISIN identifier
(Optional) Number of records to skip for pagination
(Optional) Date for historical holdings (YYYY-MM-DD)
Successful response
ETF holdings data wrapper
Show child attributes
Was this page helpful?