</>

公告列表巨潮

按股票和日期范围临时获取巨潮公告元信息。

这个接口返回公告元信息和 PDF 下载地址。

输入参数

参数类型必填说明默认值
codestring股票代码,支持 000001、000001.SZ、sh600000 或列表。
start_datestring开始日期,YYYYMMDD 或 YYYY-MM-DD。
end_datestring结束日期,YYYYMMDD 或 YYYY-MM-DD。
pageinteger页码,默认 1。1
limitinteger每页条数,默认 30,最大 100。30
参数说明

不传 fields 时返回上方全部字段;临时调用只查一次。

参数示例
client.call("cninfo_announcements", code="000001.SZ", start_date="20240101", end_date="20240131", limit=3)

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码。
symbolstring六位证券代码。
exchangestring交易所代码:SSE、SZSE、BSE。
namestring证券简称。
announcement_idstring公告 ID。
titlestring公告标题。
publish_datedate公告发布日期,格式 YYYYMMDD。
file_typestring附件类型,例如 PDF。
file_size_kbnumber附件大小,单位:KB。
download_urlstringPDF 下载地址。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "cninfo_announcements",
    code='000001.SZ',
    end_date='20240131',
    limit=3,
    start_date='20240101',
)

HTTP API

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

{
  "params": {
    "code": "000001.SZ",
    "start_date": "20240101",
    "end_date": "20240131",
    "limit": 3
  }
}

真实样例快照

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

请求参数

{
  "code": "000001.SZ",
  "start_date": "20240101",
  "end_date": "20240131",
  "limit": 3
}

响应样例

instrument_idsymbolexchangenameannouncement_idtitlepublish_datefile_typefile_size_kbdownload_url
000001.SZ000001SZSE平安银行1218968511关联交易公告20240123PDF156.0https://static.cninfo.com.cn/finalpage/2024-01-23/1218968511.PDF

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