获取内部人交易
获取内部人交易
描述
获取指定股票公司的内部人交易信息。
HTTP请求
- GET /api/v3/reality/market/inner-trades
- 限频规则: 1次/秒/IP
- 权限: 无
请求示例
curl "https://api.bitget.com/api/v3/reality/market/inner-trades?code=MU" \
-H "locale:zh-CN" \
-H "Content-Type: application/json"
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| code | String | 是 | 公司代码 如 MU |
| limit | String | 否 | 每页条目数 默认值20,最大值为100 |
| cursor | String | 否 | 游标ID 首次查询不传游标,后续分页使用上一次查询返回的游标 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"reporterName": "John Smith",
"issueOrgName": "美光科技",
"endDate": "2026-08-15",
"announcementDate": "2026-08-16",
"innerType": "Director",
"position": "首席财务官",
"securityTitle": "普通股",
"tradeDate": "2026-08-14",
"designatedExerciseDate": "",
"innerTradeType": "S",
"actionType": "decrease",
"tradeVolume": "5000",
"tradePrice": "120.50",
"holdingType": "direct",
"indirectHoldingStatement": "",
"postTradeQuantity": "45000"
}
],
"cursor": "1233319323918499840"
}
}
返回参数
| 返回字段 | 参数类型 | 字段说明 |
|---|---|---|
| list | Array | 内部人交易列表 |
| >reporterName | String | 报告人姓名 |
| >issueOrgName | String | 发行机构名称 |
| >endDate | String | 截止日期 |
| >announcementDate | String | 公告日期 |
| >innerType | String | 内部人类型 如Director,Officer等 |
| >position | String | 具体职位 |
| >securityTitle | String | 证券标题 |
| >tradeDate | String | 交易日 |
| >designatedExerciseDate | String | 指定行权日 |
| >innerTradeType | String | 内部人交易类型 P:Purchase(购买);S:Sale(出售);A:Award(奖励);F:TaxWithholding(预提税);M:Exempt(豁免);C:Conversion(衍生品转换);G:Gift(礼物赠予);J:Other(其他) |
| >actionType | String | 持仓变化方向add 增加decrease 减少 |
| >tradeVolume | String | 交易数量 |
| >tradePrice | String | 交易价格 |
| >holdingType | String | 持有类型direct 直接持有indirect 非直接持有 |
| >indirectHoldingStatement | String | 非直接持有说明 |
| >postTradeQuantity | String | 交易后持股数量 |
| cursor | String | 游标ID |