Returns ETF holder structure data including institutional, individual, and connect fund percentages.
Request
GET /api/v1/etf/holdersHeaders
| Header | Value |
|---|---|
F-API-KEY | Your API key |
Query Parameters
| Parameter | Type | Required | Filter | Description |
|---|---|---|---|---|
code | string | No | exact | Fund code |
report_period | string | No | exact | Report period |
source | string | No | exact | Data source |
limit | integer | No | — | Max rows per page (default 100, max 1000) |
offset | integer | No | — | Rows to skip (default 0) |
sort | string | No | — | Sort field (default report_period) |
order | asc | desc | No | — | Sort direction (default desc) |
Example
curl -H "F-API-KEY: fk-xxxxx" \ "https://finance-api.xp-java.workers.dev/api/v1/etf/holders?code=510300&report_period=2024Q3"Response
{ "code": 0, "message": "ok", "data": [ { "code": "510300", "report_period": "2024Q3", "institutional_pct": 65.2, "individual_pct": 30.5, "connect_fund_pct": 4.3, "source": "exchange", "updated_at": "2024-10-15T00:00:00Z" } ], "meta": { "total": 10, "limit": 100, "offset": 0, "has_more": false }}