Get Executive Shareholdings
Get Executive Shareholdings
Descriptionâ
Get executive shareholding details for a specified stock.
HTTP Requestâ
- GET /api/v3/reality/market/executive-shareholdings
- Rate limit: 1/sec/IP
- Permission: None
Request
curl "https://api.bitget.com/api/v3/reality/market/executive-shareholdings?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": "John Smith",
"holdingNum": "45000",
"holdingRatio": "0.03",
"voteRatio": "0.03",
"period": "2026Q2",
"announcementDate": "2026-08-16"
}
],
"cursor": "1233319323918499840"
}
}
Response Parametersâ
| Parameter | Type | Description |
|---|---|---|
| list | Array | Executive shareholding list |
| >name | String | Name |
| >holdingNum | String | Total shares held |
| >holdingRatio | String | Total shareholding ratio |
| >voteRatio | String | Total voting ratio |
| >period | String | Reporting period |
| >announcementDate | String | Announcement date |
| cursor | String | Cursor |