Fund Holdings
Get the list of funds that hold a given security, with the number of shares and ownership percentage.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. 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 | Success | FundHoldersResponse |
| 400 | Bad request | None |
Schemas
FundHoldersResponse
| Name | Type | Required | Description |
|---|---|---|---|
| lists | object[] | true | List of fund holders |
| ∟ symbol | string | true | Fund symbol |
| ∟ code | string | false | Fund code |
| ∟ name | string | false | Fund name |
| ∟ position_ratio | string | false | Position ratio (%) |
| ∟ report_date | string | false | Report date |
| ∟ currency | string | false | Currency |