股东研究(query/f10_shareholders) 在线调试

申报日期范围内证券公司股东人数以及人均持股数

URL

https://sandbox.hscloud.cn/info/v2/query/f10_shareholders

是否需要业务登录

HTTP请求方式

GET

支持格式

JSON

请求参数

参数名 类型 必填 最大长度 默认值 中文名 描述
en_prod_code String 2000 产品代码集
"股票代码列表:支持多股票,以"",""分隔 约束: 1、个股类接口该字段必选 2、最多支持20只股票"
page_no Integer 10 1 页面编号
返回结果的页码,默认为1
page_count Integer 8 10 页内记录数
单页返回的记录条数,最大不超过200,默认为10

返回参数

参数名 类型 最大长度 默认值 中文名 描述
report_date Integer 8 申报日期
ash_num Integer 8 股东总户数
a_average_hold_sum Float 18.4 户均持股数

请求示例

/info/v2/query/f10_shareholders?en_prod_code=600570.SS,000538.SZ&page_no=1&page_count=2

正确返回示例

{
  "data": [
    {
      "20101007": [
        {
          "600570.SS": [
            {
              "a_average_hold_sum": "30,578.36",
              "ash_num": "20204",
              "report_date": "2015-03-31"
            },
            {
              "a_average_hold_sum": "32,012.29",
              "ash_num": "19299",
              "report_date": "2014-12-31"
            }
          ]
        },
        {
          "000538.SZ": [
            {
              "a_average_hold_sum": "17,086.69",
              "ash_num": "60948",
              "report_date": "2015-03-31"
            },
            {
              "a_average_hold_sum": "18,743.36",
              "ash_num": "55561",
              "report_date": "2014-12-31"
            }
          ]
        }
      ]
    }
  ]
}