查询不定期指标数据(indicator/get_irregular_indicator)

查询不定期指标数据

网关地址

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

URL

https://sandbox.hscloud.cn/alphamind/v1/indicator/get_irregular_indicator

是否需要业务登录

HTTP请求方式

GET

请求参数

参数名 类型 必填 最大长度 默认值 中文名 描述
access_token String 访问令牌
company_code String 主体代码
主体代码
indicator_list String 指标名称
如:指标名称,多个代码用英文逗号隔开
update_date_start String 更新日期起
如:20190101
update_date_end String 更新日期止
如:20190101

返回参数

参数名 类型 最大长度 默认值 中文名 描述
error_no String 错误代码
error_info String 错误提示
data Object 数据集合
last_date Integer 最新数据日期

正确返回示例

{
 "error_no": 0,
 "error_info": "",
 "data": [
   {
  "company_code": "1030",
  "update_date": "20191231",
  "indicator_value": "nan",
  "indicator_name": "test",
  }
 ]
 "last_date":"20200817"
}