监管/问询/处分事件
监管/问询/处分事件。
HTTP 方法与路径:GET /api/v1/stock/regulatory/events
入参
Path
| 路径参数 | 无 |
Query
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
code | string | 是 | 股票代码 |
source | string | 否 | aggregate/cninfo/sse/szse/bse |
exchange | string | 否 | auto/sse/szse/bse/all |
eventKinds | string | 否 | 逗号分隔 |
startDate | string | 否 | |
endDate | string | 否 | |
page | number | 否 | |
limit | number | 否 | 1–100 |
keyword | string | 否 | |
stockName | string | 否 |
响应
响应外壳:成功时 JSON 含
success、data、可选message,见 统一响应体。
响应示例
对应请求 GET /api/v1/stock/regulatory/events?code=600887。字段以线上为准。
{
"success": true,
"data": {
"code": "600887",
"exchange": "auto",
"eventKinds": [
"inquiry",
"..."
],
"total": 0,
"events": [],
"sources": {
"sse": {
"status": "ok",
"total": 0,
"note": "无命中"
},
"cninfo": {
"status": "ok",
"total": 0,
"note": "无命中"
}
}
}
}请求示例
curl -sS -H "Authorization: Bearer <API_KEY>" "http://localhost:4000/api/v1/stock/regulatory/events?code=600887"Last updated on