ETF 资产配置
获取 ETF 的资产配置信息,包含持仓、地区分布、资产类别及行业分布。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | ETF 标的代码,如 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
| 状态码 | 描述 | 数据结构 |
|---|---|---|
| 200 | 成功 | AssetAllocationResponse |
| 400 | 请求错误 | 无 |
Schemas
AssetAllocationResponse
| 字段名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| info | object[] | 是 | 资产配置分组列表,见 AssetAllocationGroup |
AssetAllocationGroup
| 字段名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| report_date | string | 否 | 报告日期(如 20260601) |
| asset_type | string | 否 | 配置类型:Holdings(持仓)、Regional(地区)、AssetClass(资产类别)、Industry(行业) |
| lists | object[] | 是 | 配置明细列表,见 AssetAllocationItem |
AssetAllocationItem
| 字段名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| name | string | 否 | 名称 |
| code | string | 否 | 证券代码(仅持仓类型,如 NVDA) |
| position_ratio | string | 否 | 持仓比例(如 0.0861114) |
| symbol | string | 否 | 证券标的代码(仅持仓类型,如 NVDA.US) |
| name_locales | object | 否 | 多语言名称(语言 → 名称) |
| holding_detail | object | 否 | 持仓明细(仅持仓类型),见 HoldingDetail |
HoldingDetail
| 字段名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| industry_id | string | 否 | 行业 ID |
| industry_name | string | 否 | 行业名称 |
| index | string | 否 | 指数代码(如 BK/US/CP99000) |
| index_name | string | 否 | 指数名称 |