新闻公告路演通达信
查询个股新闻、公告或路演列表;不同类型返回字段会有差异,缺失项返回 null。
查询个股新闻、公告或路演列表;不同类型返回字段会有差异,缺失项返回 null。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。 | |
category | string | 否 | 类型:news 新闻、announcement 公告、roadshow 路演;默认 announcement。 | "announcement" |
count | integer | 否 | 返回条数,默认 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_id | string | AxData 统一证券代码,例如 000001.SZ。 |
symbol | string | 交易所原始六位代码。 |
category | string | 资讯类型。 |
issue_date | datetime | 发布时间或公告日期;路演通常为空。 |
title | string | 标题。 |
source | string | 来源;路演通常为空。 |
detail_table | string | 详情来源表。 |
detail_id | string | 记录 ID;路演通常为空。 |
type_code | string | 公告类型码;非公告通常为空。 |
type_name | string | 公告类型名;非公告通常为空。 |
url | string | PDF、新闻或活动链接;源端无链接时为空。 |
summary | string | 摘要;源端无摘要时为空。 |
start_date | date | 路演开始日期;非路演为空。 |
start_time | string | 路演开始时间;非路演为空。 |
end_time | string | 路演结束时间;非路演为空。 |
调用示例
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_id | symbol |
|---|---|
| 000001.SZ | 000001 |
生成时间:2026-07-06T16:54:55+00:00