跳转至

上市与退市事件

本页定义目标 API,实际数据查询服务尚未实现。示例仅用于表达请求和响应格式。

数据产品标识:stock.listing_events 证券对象标识示例:000001.SZ

接口名称

获取上市与退市事件

接口说明

股票挂牌开始和终止上市生命周期事件。当前发布范围仅包含已批准当前证券的挂牌开始事件;历史退市事件将在独立证据完成后追加。

请求参数

参数名 类型 必填 说明
security_code string 筛选一个或多个证券代码。
start_date date 按生效日期查询的开始日期,包含该日。
end_date date 按生效日期查询的结束日期,包含该日。

返回字段

字段名 中文名称 类型 是否可空 字段说明
security_code 证券代码 string 事件对应的 BuQuant 证券代码。
event_type 事件类型 string 挂牌开始或终止上市。
effective_date 生效日期 date 事件在市场规则下生效的日期。
announcement_date 公告日期 date 事件首次公开披露的日期。
reason 事件原因 string 公开披露的事件原因。

请求示例

{
  "dataset_id": "stock.listing_events",
  "select": ["security_code", "event_type", "effective_date", "announcement_date", "reason"],
  "where": [
    {"field": "security_code", "op": "eq", "value": "000001.SZ"},
    {"field": "effective_date", "op": "gte", "value": "2026-01-01"},
    {"field": "effective_date", "op": "lte", "value": "2026-08-10"}
  ],
  "page": {"limit": 1000, "cursor": null}
}

响应示例

{
  "dataset_id": "stock.listing_events",
  "fields": [
    "security_code",
    "event_type",
    "effective_date",
    "announcement_date",
    "reason"
  ],
  "data": [
    {
      "security_code": "000001.SZ",
      "event_type": "string",
      "effective_date": "2026-08-10",
      "announcement_date": "2026-08-01",
      "reason": "string"
    }
  ],
  "page": {
    "next_cursor": null,
    "complete": true
  }
}