</>

新闻公告路演通达信

查询个股新闻、公告或路演列表;不同类型返回字段会有差异,缺失项返回 null。

查询个股新闻、公告或路演列表;不同类型返回字段会有差异,缺失项返回 null。

输入参数

参数类型必填说明默认值
codestring股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。
categorystring类型:news 新闻、announcement 公告、roadshow 路演;默认 announcement。"announcement"
countinteger返回条数,默认 20。20
参数示例
# 单个标的
client.call("stock_disclosure_feed_tdx", code="000034.SZ", category="announcement", count=5)

# 批量请求多个标的
client.call("stock_disclosure_feed_tdx", code=["000034.SZ", "000001.SZ"], category="announcement", count=5)

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码,例如 000001.SZ。
symbolstring交易所原始六位代码。
categorystring资讯类型。
issue_datedatetime发布时间或公告日期;路演通常为空。
titlestring标题。
sourcestring来源;路演通常为空。
detail_tablestring详情来源表。
detail_idstring记录 ID;路演通常为空。
type_codestring公告类型码;非公告通常为空。
type_namestring公告类型名;非公告通常为空。
urlstringPDF、新闻或活动链接;源端无链接时为空。
summarystring摘要;源端无摘要时为空。
start_datedate路演开始日期;非路演为空。
start_timestring路演开始时间;非路演为空。
end_timestring路演结束时间;非路演为空。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_disclosure_feed_tdx",
    category='announcement',
    code='000001.SZ',
    count=20,
)

HTTP API

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

{
  "params": {
    "code": "000001.SZ",
    "category": "announcement",
    "count": 20
  }
}

真实样例快照

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

请求参数

{
  "code": "000001.SZ",
  "category": "announcement",
  "count": 20
}

响应样例

instrument_idsymbol
000001.SZ000001

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