ETF Asset Allocation
Get ETF asset allocation including holdings, regional distribution, asset class, and industry breakdown.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | ETF security symbol, e.g. QQQ.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"info": [
{
"report_date": "20260601",
"asset_type": "Holdings",
"lists": [
{
"name": "NVIDIA Corp",
"code": "NVDA",
"position_ratio": "0.0861114",
"symbol": "NVDA.US",
"name_locales": {
"zh-CN": "英伟达"
},
"holding_detail": {
"industry_id": "10101010",
"industry_name": "Semiconductors",
"index": "BK/US/CP99000",
"index_name": "S&P 500"
}
}
]
},
{
"report_date": "20260601",
"asset_type": "Regional",
"lists": [
{
"name": "United States",
"code": "",
"position_ratio": "0.9823",
"symbol": "",
"name_locales": {}
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | AssetAllocationResponse |
| 400 | Bad request | None |
Schemas
AssetAllocationResponse
| Name | Type | Required | Description |
|---|---|---|---|
| info | object[] | true | Asset allocation groups, see AssetAllocationGroup |
AssetAllocationGroup
| Name | Type | Required | Description |
|---|---|---|---|
| report_date | string | false | Report date (e.g. 20260601) |
| asset_type | string | false | Element type: Holdings, Regional, AssetClass, Industry |
| lists | object[] | true | Allocation items, see AssetAllocationItem |
AssetAllocationItem
| Name | Type | Required | Description |
|---|---|---|---|
| name | string | false | Element name |
| code | string | false | Security code (holdings only, e.g. NVDA) |
| position_ratio | string | false | Position ratio (e.g. 0.0861114) |
| symbol | string | false | Security symbol (holdings only, e.g. NVDA.US) |
| name_locales | object | false | Localized names (locale → name) |
| holding_detail | object | false | Holding detail (holdings only), see HoldingDetail |
HoldingDetail
| Name | Type | Required | Description |
|---|---|---|---|
| industry_id | string | false | Industry ID |
| industry_name | string | false | Industry name |
| index | string | false | Index counter ID (e.g. BK/US/CP99000) |
| index_name | string | false | Index name |