Get Sharehold Detail
Get Sharehold Detail
Descriptionâ
Get major shareholder shareholding details for a specified stock.
HTTP Requestâ
- GET /api/v3/reality/market/sharehold-detail
- Rate limit: 1/sec/IP
- Permission: None
Request
curl "https://api.bitget.com/api/v3/reality/market/sharehold-detail?code=MU" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameter | Type | Required | Description |
|---|---|---|---|
| code | String | Yes | Company code e.g., MU |
| limit | String | No | Limit per page Default: 20. Maximum:100 |
| cursor | String | No | Cursor Pagination is implemented by omitting the cursor in the first query and applying the cursor from the previous query for subsequent pages |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"name": "The Vanguard Group, Inc.",
"holdingNum": "120000000",
"holdingRatio": "0.109"
}
],
"cursor": "1233319323918499840"
}
}
Response Parametersâ
| Parameter | Type | Description |
|---|---|---|
| list | Array | Major shareholder shareholding list |
| >name | String | Name |
| >holdingNum | String | Total shares held |
| >holdingRatio | String | Total shareholding ratio |
| cursor | String | Cursor |