停复牌信息(suspend_resumption) 在线调试

按板块,市场等不同纬度统计停复牌股票代码以及原因,统计数据详细包含停盘交易日数,复盘日期等

网关地址

沙箱环境调用地址: https://sandbox.hscloud.cn
数据核查类生产调用地址: https://api.hscloud.cn
仿真业务接口生产调用地址: https://vopen.hscloud.cn
其余生产调用地址: https://open.hscloud.cn

URL

https://sandbox.hscloud.cn/info/v3/suspend_resumption

是否需要业务登录

HTTP请求方式

GET

请求参数

参数名 类型 必填 最大长度 默认值 中文名 描述
symbols String 200 股票代码集
支持多参数,各个参数之间以逗号相隔,参数最多不能超过20个,输入参数的代码必须以市场后缀结尾,例如上海:SH,SS 深圳:SZ 注意:当同时输入一个正确代码和一个错误代码时,会提示当前输入的股票代码错误,返回错误信息。
page_no Integer 10 1 页面编号
若不送,默认为1
page_count Integer 8 10 页内记录数
若不送,默认为10,最大一次查询200条
listed_sector String 200 上市板块
1-主板,2-中小板,6-创业板 不输默认取1、2和6
secu_category String 200 证券类型
1-A股,2-B股 不输默认取1和2
secu_market String 200 证券市场
83-上海 90-深圳 不输默认取83和90
suspend_resumption_flag String 1 1 停复牌标识
1-停牌、2-复牌 截止日期当天,该代码是停牌的,值为“1” 截止日期当天,该代码是复牌的,值为“2” 如果不送默认为1
start_date String 自定义查询停复盘开始日期
格式"2015-12-12"或者"20151212" 停复牌日期,根据停复牌标识定义
fields String 200 输出字段集合
支持多参数,各个参数之间以逗号相隔,如有重复,重复参数将被去除 说明:该输入字段可以指定输出字段 不送默认输出全部字段

返回参数

参数名 类型 最大长度 默认值 中文名 描述
secu_code String 200 证券代码
股票代码
secu_market String 200 证券市场
股票市场 83-上海 90-深圳
secu_abbr String 200 证券简称
股票简称
listed_sector String 200 上市板块
上市板 1-主板,2-中小板,6-创业板
secu_category String 200 证券类型
证券类别 83-深圳 90-上海
suspend_resumption_flag String 1 停复牌标识
停复牌标识 1-停牌、2-复牌
suspend_date String 200 停牌日期
停牌日期
suspend_time String 200 停牌时间
停牌时间
resumption_date String 200 复牌日期
复牌日期
resumption_time String 200 复牌时间
复牌时间
suspend_term String 30 停牌期限
停牌期限
suspend_reason String 200 停牌原因
停牌原因
suspend_days String 30 已停牌交易日数
已停牌交易日数

请求示例

/info/v3/suspend_resumption?suspend_resumption_flag=2&end_date=2012-04-12

正确返回示例

{
data: [
{
listed_sector: "1",
resumption_date: "2012-04-12",
resumption_time: "9:30:00",
secu_abbr: "景峰医药",
secu_category: "1",
secu_code: "000908.SZ",
secu_market: "90",
suspend_date: "2012-03-02",
suspend_days: "1110",
suspend_resumption_flag: "1",
suspend_time: "9:30:00"
},
{
listed_sector: "2",
resumption_date: "2012-04-12",
resumption_time: "9:30:00",
secu_abbr: "悦心健康",
secu_category: "1",
secu_code: "002162.SZ",
secu_market: "90",
suspend_date: "2012-04-10",
suspend_days: "1086",
suspend_resumption_flag: "1",
suspend_time: "9:30:00"
},
{
listed_sector: "6",
resumption_date: "2012-04-12",
resumption_time: "9:30:00",
secu_abbr: "莱美药业",
secu_category: "1",
secu_code: "300006.SZ",
secu_market: "90",
suspend_date: "2012-04-11",
suspend_days: "1085",
suspend_resumption_flag: "1",
suspend_time: "9:30:00"
}                                                                                                                        ]
}