基金持仓
获取持有指定证券的基金列表,含持股数量和持股比例。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码,例如 AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"lists": [
{
"symbol": "TSLT.US",
"code": "TSLT",
"name": "2x Long TSLA ETF",
"position_ratio": "101.02",
"report_date": "2026-05-07",
"currency": "USD"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | FundHoldersResponse |
| 400 | 请求错误 | None |
Schemas
FundHoldersResponse
| Name | Type | Required | Description |
|---|---|---|---|
| lists | object[] | 是 | 基金持仓列表, |
| ∟ symbol | string | 是 | 基金代码(含市场后缀) |
| ∟ code | string | 否 | 基金简码 |
| ∟ name | string | 否 | 基金名称 |
| ∟ position_ratio | string | 否 | 持仓占比(%) |
| ∟ report_date | string | 否 | 报告日期 |
| ∟ currency | string | 否 | 货币 |