一、京东商品历史价格信息API接口-(item_history_price-获取商品历史价格信息API接口),京东API接口代码对接
1.公共参数
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
key | String | 是 | 调用key(必须以GET方式拼接在URL中) |
secret | String | 是 | 调用密钥 ( 点击获取测试key和secret) |
api_name | String | 是 | API接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等] |
cache | String | 否 | [yes,no]默认yes,将调用缓存的数据,速度比较快 |
result_type | String | 否 | [json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读 |
lang | String | 否 | [cn,en,ru]翻译语言,默认cn简体中文 |
version | String | 否 | API版本 |
2.请求参数
请求参数:num_iid=63153022346
参数说明:num_iid:商品id
3.响应示例
名称 | 类型 | 是否隐私 | 示例值 | 描述 |
---|---|---|---|---|
items | items[] | 获取商品历史价格信息 | ||
num_iid | Bigint | 63153022346 | 宝贝ID | |
title | String | 安踏女鞋跑步鞋女2020冬季新品轻便跑鞋皮面防泼水运动鞋子休闲鞋官方旗舰网店女子运动鞋子 (革面)藕灰-2 6.5(女37.5) | 商品标题 | |
detail_url | String | https://item.jd.com/63153022346.html | 宝贝链接 | |
pic_url | String | 宝贝图片 | ||
lower_price | Float | 107.0 | 最低价 | |
lower_date | String | 2020-12-22 | 最低价日期 | |
current_price | Float | 134.01 | 当前价 | |
change_price_remark | String | |||
item | Mix | {"date": "2020-06-25", "price": "159", "discount": "",} | 价格信息 |
4.请求示例(CURL、PHP 、PHPsdk 、Java 、C# 、Python…)
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://wx19970108018/jd/item_history_price/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=63153022346"
headers = {
"Accept-Encoding": "gzip",
"Connection": "close"
}
if __name__ == "__main__":
r = requests.get(url, headers=headers)
json_obj = r.json()
print(json_obj)
5.响应示例
{
"items": {
"num_iid": "63153022346",
"title": "京东商城安踏女鞋跑步鞋女2020冬季新品轻便跑鞋皮面运动鞋子休闲鞋官方旗舰网店女子运动鞋子 (革面)藕灰-2 8.5(女40)",
"detail_url": "https://item.jd.com/63153022346.html",
"pic_url": "",
"lower_price": "",
"lower_date": "",
"current_price": "",
"change_price_remark": "",
"item": [
{
"date": "2021-02-24",
"price": "159.01",
"discount": ""
},
{
"date": "2021-02-25",
"price": "159.01",
"discount": ""
},
{
"date": "2021-02-26",
"price": "159.01",
"discount": ""
},
{
"date": "2021-02-27",
"price": "159.01",
"discount": ""
},
{
"date": "2021-02-28",
"price": "159.01",
"discount": ""
},
{
"date": "2021-03-01",
"price": "159.01",
"discount": ""
},
{
"date": "2021-03-02",
"price": "159.01",
"discount": ""
},
{
"date": "2021-03-03",
"price": "159.01",
"discount": ""
}
],
"data_from": "p_zwjhl"
},
"error": "",
"reason": "",
"error_code": "0000",
"cache": 0,
"api_info": "today:15 max:10000",
"execution_time": 0.682,
"server_time": "Beijing/2021-03-10 16:34:02",
"client_ip": "106.6.35.144",
"call_args": [],
"api_type": "jd",
"translate_language": "zh-CN",
"translate_engine": "google_cn",
"server_memory": "3.11MB",
"request_id": "gw-1.6048847a39f60"
}