全球经济数据接口包含美国GDP数据。历史数据从1947年开始,按季更新。
接口名称:全球经济数据接口
接口平台:聚合数据
接口地址:http://op.juhe.cn/economy/global/us/gdp/index
支持格式:json/xml
请求方式:get/post
请求示例:http://op.juhe.cn/economy/global/us/gdp/index?indicID=G010000004&beginDate=20150101&key=您申请到的appkey
请求参数说明:
| 名称 | 类型 | 必填 | 说明 |
| dtype | string | 否 | 返回的格式,json或xml,默认json |
| key | string | 是 | 您申请到的APPKEY |
| indicID | string | 是 | 指标代码,请到美国GDP指标代码API查询 |
| beginDate | string | 否 | 开始日期,如:20130101 |
| endDate | string | 否 | 结束日期,如:20150910 |
返回参数说明:
| 名称 | 类型 | 说明 |
| error_code | int | 返回码 |
| reason | string | 返回说明 |
| result | string | 返回结果集 |
全球经济数据接口调用JSON返回示例:
{
"reason": "成功的返回",
"result": {
"data": [
{
"indicID": "G010000004",
"indicName": "季_美国_GDP_2009价_折年数_环比",
"publishTime": "2015-04-29 08:30:00",
"periodDate": "2015-03-31",
"dataValue": 0.2,
"unit": "%",
"region": "美国",
"dataSource": "美国国家经济分析局",
"updateTime": "2015-04-30 08:53:41"
}
]
},
"error_code": 0
}