Get Inner Trades
Get Inner Trades
Descriptionâ
Get insider trading information for a specified stock company.
HTTP Requestâ
- GET /api/v3/reality/market/inner-trades
- Rate limit: 1/sec/IP
- Permission: None
Request
curl "https://api.bitget.com/api/v3/reality/market/inner-trades?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": [
{
"reporterName": "John Smith",
"issueOrgName": "Micron Technology Inc",
"endDate": "2026-08-15",
"announcementDate": "2026-08-16",
"innerType": "Director",
"position": "Chief Financial Officer",
"securityTitle": "Common Stock",
"tradeDate": "2026-08-14",
"designatedExerciseDate": "",
"innerTradeType": "S",
"actionType": "decrease",
"tradeVolume": "5000",
"tradePrice": "120.50",
"holdingType": "direct",
"indirectHoldingStatement": "",
"postTradeQuantity": "45000"
}
],
"cursor": "1233319323918499840"
}
}
Response Parametersâ
| Parameter | Type | Description |
|---|---|---|
| list | Array | Insider trading list |
| >reporterName | String | Reporter name |
| >issueOrgName | String | Issuer organization name |
| >endDate | String | End date |
| >announcementDate | String | Announcement date |
| >innerType | String | Insider type e.g. Director, Officer, etc. |
| >position | String | Specific position |
| >securityTitle | String | Security title |
| >tradeDate | String | Trade date |
| >designatedExerciseDate | String | Designated exercise date |
| >innerTradeType | String | Insider trade type P: Purchase; S: Sale; A: Award; F: TaxWithholding; M: Exempt; C: Conversion; G: Gift; J: Other |
| >actionType | String | Holding change directionadd Increasedecrease Decrease |
| >tradeVolume | String | Trade volume |
| >tradePrice | String | Trade price |
| >holdingType | String | Holding typedirect Direct holdingindirect Indirect holding |
| >indirectHoldingStatement | String | Indirect holding statement |
| >postTradeQuantity | String | Post-trade holding quantity |
| cursor | String | Cursor |