Skip to content

GET /api/v1/etf/holders

ETF holder structure (institutional vs individual).

Returns ETF holder structure data including institutional, individual, and connect fund percentages.

Request

GET /api/v1/etf/holders

Headers

HeaderValue
F-API-KEYYour API key

Query Parameters

ParameterTypeRequiredFilterDescription
codestringNoexactFund code
report_periodstringNoexactReport period
sourcestringNoexactData source
limitintegerNoMax rows per page (default 100, max 1000)
offsetintegerNoRows to skip (default 0)
sortstringNoSort field (default report_period)
orderasc | descNoSort direction (default desc)

Example

Terminal window
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
}
}