</>

历史事件关联通达信

查询个股历史事件关联记录;不是涨停原因库,可选补充详情正文。

查询个股历史事件关联记录;不是涨停原因库,可选补充详情正文。

输入参数

参数类型必填说明默认值
codestring股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。
start_datestring起始日期,可选;按事件创建日期过滤。
end_datestring结束日期,可选;按事件创建日期过滤。
include_detailboolean是否补充详情正文,默认 false。false
参数示例
# 单个标的
client.call("stock_event_drivers_tdx", code="000001.SZ", start_date="20150101", end_date="20190212", include_detail=True)

# 批量请求多个标的
client.call("stock_event_drivers_tdx", code=["000034.SZ", "000001.SZ"], start_date="20150101", end_date="20190212", include_detail=True)

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码,例如 000001.SZ。
symbolstring交易所原始六位代码。
event_datedate事件创建日期。
event_namestring事件名称,不等同于涨停原因。
detail_idstring事件详情 ID。
event_naturestring事件性质。
creation_change_pctnumber创建日涨跌幅,单位:%。
has_detailboolean是否有详情正文。
detail_titlestring详情标题;include_detail=true 时补充。
detail_textstring详情正文;include_detail=true 时补充。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_event_drivers_tdx",
    code='000001.SZ',
    include_detail=False,
)

HTTP API

POST /v1/request/stock_event_drivers_tdx
Content-Type: application/json

{
  "params": {
    "code": "000001.SZ",
    "include_detail": false
  }
}

真实样例快照

展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。

请求参数

{
  "code": "000001.SZ",
  "include_detail": false
}

响应样例

instrument_idsymbol
000001.SZ000001

生成时间:2026-07-06T16:54:55+00:00