API接口接入京东平台获取商品详情数据、价格、销量、商品标题、产品属性参数指南

京东平台商品详情接口是开放平台提供的一种API接口,通过调用API接口,开发者可以获取京东商品的标题、价格、库存、月销量、总销量、库存、详情描述、图片等详细信息 。

获取商品详情接口API是一种用于获取电商平台上商品详情数据的接口,通过该接口,用户可以根据商品的ID或其他关键信息,向电商平台发送请求,获取商品的详情数据。用户可以根据这些数据进行统计分析、制作报表或进行数据挖掘,帮助卖家更好地了解市场需求和受众偏好。

jd.item_get-获得JD商品详情

公共参数

请求地址: 注册调用key

名称 类型 必须 描述
key String 调用key(必须以GET方式拼接在URL中)
secret String 调用密钥
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版本

请求参数

请求参数:num_iid=10335871600
参数说明:num_iid:JD商品ID

url:京东域名[非item.jd.com需传]

(npcitem.jd.hk:京东国际,item.jkcsjd.com:京东大药房)

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items items[] 0 获得JD商品详情
num_iid Bigint 0 29186819959 商品ID
title String 0 MOCO2018夏季新品时尚V领条纹连衣裙 摩安珂 蓝白条色 S 商品标题
desc_short String 0 商品简介
price Float 0 719.0 价格
total_price Float 0 0
suggestive_price Float 0 0
orginal_price Float 0 1199.00 原价
nick String 0 MO&Co.官方旗舰店 掌柜昵称
num Int 0 999
min_num Int 0 0
detail_url String 0 http://item.jd.com/29186819959.html 商品链接
pic_url String 0 //img14.360buyimg.com/n0/jfs/t22033/147/1051007175/85125/c44dd0df/5b1f2855Ncbe35858.jpg 商品图片
brand String 0 品牌名称
brandId Int 0 品牌ID
rootCatId Int 0 1343 顶级分类ID
cid Int 0 9719
crumbs Mix 0 []
created_time String 0
modified_time String 0
delist_time String 0
desc String 0
desc_img Mix 0 []
item_imgs Mix 0 [{ "url": "//img14.360buyimg.com/n0/jfs/t22033/147/1051007175/85125/c44dd0df/5b1f2855Ncbe35858.jpg"}] 商品图片
item_weight String 0
item_size String 0
location String 0 发货地
post_fee Float 0 6.00 物流费用
express_fee Float 0 6.00 快递费用
ems_fee Float 0 6.00 EMS费用
shipping_to String 0 发货至
has_discount Boolean 0 false
video Mix 0 [] 商品视频
is_virtual String 0
sample_id String 0 商品风格标识ID
is_promotion Boolean 0
props_name String 0 0:0:尺码:S;0:1:尺码:XS;0:2:尺码:M;0:3:尺码:L;0:4:尺码:XL 商品属性名
prop_imgs Mix 0 {"prop_img": []} 商品属性图片列表
property_alias String 0 0:0:S;0:1:XS;0:2:M;0:3:L;0:4:XL 商品属性别名
props Mix 0 [{ "name": "尺码","value": "S XS M L XL" }] 商品详情
total_sold Int 0
skus Mix 0 {"sku": [{"price": "719.00", "orginal_price": "1199.00", "properties": "0:0", "properties_name": "0:0:尺码:S", "quantity": 99, "sku_id": 29186819959, "sku_url": "http://item.jd.com/29186819959.html"}] 商品规格信息
seller_id Int 0 卖家ID
sales Int 0 销量
shop_id Int 0 店铺ID
props_list Mix 0 {"0:0": "尺码:S"} 商品属性
seller_info Mix 0 {"level": null, "shop_type": null, "user_num_id": 57467, "cid": null, "delivery_score": null, "item_score": null, "score_p": null, "zhuy": "//moco.jd.com", "search_id": "", "nick": "MO&Co.官方旗舰店", "shop_name": "MO&Co.官方旗舰店", "title": "MO&Co.官方旗舰店" } 卖家信息
tmall Boolean 0 false 是否天猫
error String 0 错误信息
warning String 0 警告信息
url_log Mix 0 []
props_img Mix 0 [] 属性图片
shop_item Mix 0 []
relate_items Mix 0 []

PHP请求示例

<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://jd/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>

响应示例

{
	"item": {
		"num_iid": "10335871600",
		"title": "安踏男鞋休闲运动鞋秋冬季新款皮面轻便板鞋跑步鞋子男户外训练体测鞋 5527-7象牙白/雾灰-网面 42",
		"desc_short": "",
		"price": "189.00",
		"total_price": "",
		"suggestive_price": "",
		"orginal_price": "269.00",
		"nick": "安踏悠购专卖店",
		"num": "99",
		"min_num": 0,
		"main_sku_id": "10073073663",
		"detail_url": "https://item.jd.com/10335871600.html#crumb-wrap",
		"pic_url": "//img10.360buyimg.com/n0/jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
		"brand": null,
		"brandId": 3552,
		"rootCatId": 12099,
		"cid": 9756,
		"created_time": "",
		"modified_time": "",
		"delist_time": "",
		"desc": "",
		"desc_img": [],
		"item_imgs": [
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/190177/15/30398/167700/63b8cd47F2b7ee73c/9ceb068453396c04.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/156315/13/33830/159672/63b8cd47Ffee4e8c7/379180f2783cbd08.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/135506/26/29160/129980/63b8cd48F241acda4/844b9d7a2e6ca7f0.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/133735/26/32821/151733/63b8cd48Fd1d816a3/f42953b364269e92.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/129622/17/34643/188427/63b8cd48Fd720c5a2/92e07d129187db01.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/138642/2/33034/61823/63b8cd48Fe08f3d25/57e6623ae31713ac.jpg"
			},
			{
				"url": "//img10.360buyimg.com/n1/jfs/t1/203164/27/30720/149336/63b8cd48Fc5701d7e/dd9e11f9acf1b4fc.jpg"
			}
		],
		"item_weight": null,
		"item_volume": "",
		"item_size": "",
		"location": null,
		"post_fee": "",
		"express_fee": "",
		"ems_fee": "",
		"shipping_to": "",
		"has_discount": "",
		"video": "https://vod.300hu.com/4c1f7a6atransbjngwcloud1oss/7b07a71c361077733155426305/v.f30.mp4?source=1&h265=v.f1022_h265.mp4",
		"sample_id": "",
		"is_promotion": "",
		"props_name": "0:0:尺码:43;0:1:尺码:42;0:2:尺码:39;0:3:尺码:40;0:4:尺码:44.5;0:5:尺码:40.5;0:6:尺码:41;0:7:尺码:42.5;1:0:颜色:21-5雾灰/黑/安踏白;1:1:颜色:5527-7象牙白/雾灰-网面;1:2:颜色:-6黑/安踏白;1:3:颜色:-8黑(推荐);1:4:颜色:-11黑/金属金(皮面);1:5:颜色:-1象牙白/泥沙灰/黑;1:6:颜色:-12黑/象牙白(皮面);1:7:颜色:-13雾灰/黑(皮面)",
		"prop_imgs": {
			"prop_img": [
				{
					"properties": "0:0;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:1;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:2;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:3;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:4;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:5;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:6;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:7;1:0",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg"
				},
				{
					"properties": "0:0;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:1;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:2;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:3;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:4;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:5;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:6;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:7;1:1",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg"
				},
				{
					"properties": "0:0;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:1;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:2;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:3;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:4;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:5;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:6;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:7;1:2",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg"
				},
				{
					"properties": "0:0;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:1;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:2;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:3;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:4;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:5;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:6;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:7;1:3",
					"url": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg"
				},
				{
					"properties": "0:0;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:1;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:2;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:3;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:4;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:5;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:6;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:7;1:4",
					"url": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg"
				},
				{
					"properties": "0:0;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:1;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:2;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:3;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:4;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:5;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:6;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:7;1:5",
					"url": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg"
				},
				{
					"properties": "0:0;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:1;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:2;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:3;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:4;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:5;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:6;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:7;1:6",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg"
				},
				{
					"properties": "0:0;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:1;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:2;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:3;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:4;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:5;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:6;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				},
				{
					"properties": "0:7;1:7",
					"url": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
				}
			]
		},
		"property_alias": "0:0:43;0:1:42;0:2:39;0:3:40;0:4:44.5;0:5:40.5;0:6:41;0:7:42.5;1:0:21-5雾灰/黑/安踏白;1:1:5527-7象牙白/雾灰-网面;1:2:-6黑/安踏白;1:3:-8黑(推荐);1:4:-11黑/金属金(皮面);1:5:-1象牙白/泥沙灰/黑;1:6:-12黑/象牙白(皮面);1:7:-13雾灰/黑(皮面)",
		"props": [
			{
				"name": "品牌",
				"value": "安踏(ANTA)"
			},
			{
				"name": "商品名称",
				"value": "安踏男鞋休闲运动鞋秋冬季新款皮面轻便板鞋跑步鞋子男户外训练体测鞋 5527-7象牙白/雾灰-网面 42"
			},
			{
				"name": "商品编号",
				"value": "10335871600"
			},
			{
				"name": "店铺",
				"value": "  安踏悠购专卖店"
			},
			{
				"name": "商品毛重",
				"value": "400.00g"
			},
			{
				"name": "商品产地",
				"value": "中国大陆"
			},
			{
				"name": "货号",
				"value": "安踏1"
			},
			{
				"name": "鞋面材质",
				"value": "合成革,织物"
			},
			{
				"name": "适用季节",
				"value": "秋季,冬季,四季通用"
			},
			{
				"name": "功能",
				"value": "保暖,减震,轻便"
			},
			{
				"name": "适用性别",
				"value": "男"
			},
			{
				"name": "鞋底材质",
				"value": "EVA"
			},
			{
				"name": "运动系列",
				"value": "运动生活系列"
			},
			{
				"name": "适用场地",
				"value": "山地,地板,跑道,公路,小道"
			},
			{
				"name": "类别",
				"value": "入门跑鞋,稳定跑鞋,缓冲跑鞋"
			},
			{
				"name": "鞋面科技",
				"value": "织物呼吸网"
			},
			{
				"name": "鞋面功能",
				"value": "轻质"
			},
			{
				"name": "外底功能",
				"value": "轻质"
			},
			{
				"name": "上市时间",
				"value": "2023年秋季"
			},
			{
				"name": "流行元素",
				"value": "车缝线"
			},
			{
				"name": "中底功能",
				"value": "缓震"
			},
			{
				"name": "是否使用环保材质",
				"value": "含环保材料"
			},
			{
				"name": "闭合方式",
				"value": "系带"
			},
			{
				"name": "颜色",
				"value": "黑色"
			}
		],
		"total_sold": "",
		"skus": {
			"sku": [
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:0;1:0",
					"properties_name": "0:0:尺码:43;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871595,
					"sku_url": "http://item.jd.com/10335871595.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:1;1:0",
					"properties_name": "0:1:尺码:42;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871594,
					"sku_url": "http://item.jd.com/10335871594.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:2;1:0",
					"properties_name": "0:2:尺码:39;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871593,
					"sku_url": "http://item.jd.com/10335871593.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:3;1:0",
					"properties_name": "0:3:尺码:40;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871592,
					"sku_url": "http://item.jd.com/10335871592.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:4;1:0",
					"properties_name": "0:4:尺码:44.5;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871596,
					"sku_url": "http://item.jd.com/10335871596.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:5;1:0",
					"properties_name": "0:5:尺码:40.5;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 11500318990,
					"sku_url": "http://item.jd.com/11500318990.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:6;1:0",
					"properties_name": "0:6:尺码:41;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 10061004645932,
					"sku_url": "http://item.jd.com/10061004645932.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:7;1:0",
					"properties_name": "0:7:尺码:42.5;1:0:颜色:21-5雾灰/黑/安踏白",
					"quantity": "99",
					"sku_id": 11488668356,
					"sku_url": "http://item.jd.com/11488668356.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:0;1:1",
					"properties_name": "0:0:尺码:43;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 10335876501,
					"sku_url": "http://item.jd.com/10335876501.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:1;1:1",
					"properties_name": "0:1:尺码:42;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 10335871600,
					"sku_url": "http://item.jd.com/10335871600.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:2;1:1",
					"properties_name": "0:2:尺码:39;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 10335871599,
					"sku_url": "http://item.jd.com/10335871599.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:3;1:1",
					"properties_name": "0:3:尺码:40;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 10335871598,
					"sku_url": "http://item.jd.com/10335871598.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:4;1:1",
					"properties_name": "0:4:尺码:44.5;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 10335876502,
					"sku_url": "http://item.jd.com/10335876502.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:5;1:1",
					"properties_name": "0:5:尺码:40.5;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 11500318989,
					"sku_url": "http://item.jd.com/11500318989.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:6;1:1",
					"properties_name": "0:6:尺码:41;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 10061004645933,
					"sku_url": "http://item.jd.com/10061004645933.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:7;1:1",
					"properties_name": "0:7:尺码:42.5;1:1:颜色:5527-7象牙白/雾灰-网面",
					"quantity": "99",
					"sku_id": 11488668357,
					"sku_url": "http://item.jd.com/11488668357.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:0;1:2",
					"properties_name": "0:0:尺码:43;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871589,
					"sku_url": "http://item.jd.com/10335871589.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:1;1:2",
					"properties_name": "0:1:尺码:42;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871588,
					"sku_url": "http://item.jd.com/10335871588.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:2;1:2",
					"properties_name": "0:2:尺码:39;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871587,
					"sku_url": "http://item.jd.com/10335871587.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:3;1:2",
					"properties_name": "0:3:尺码:40;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871586,
					"sku_url": "http://item.jd.com/10335871586.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:4;1:2",
					"properties_name": "0:4:尺码:44.5;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 10335871590,
					"sku_url": "http://item.jd.com/10335871590.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:5;1:2",
					"properties_name": "0:5:尺码:40.5;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 11500318988,
					"sku_url": "http://item.jd.com/11500318988.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:6;1:2",
					"properties_name": "0:6:尺码:41;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 10061004645934,
					"sku_url": "http://item.jd.com/10061004645934.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:7;1:2",
					"properties_name": "0:7:尺码:42.5;1:2:颜色:-6黑/安踏白",
					"quantity": "99",
					"sku_id": 11488668358,
					"sku_url": "http://item.jd.com/11488668358.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:0;1:3",
					"properties_name": "0:0:尺码:43;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143226,
					"sku_url": "http://item.jd.com/43139143226.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:1;1:3",
					"properties_name": "0:1:尺码:42;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143227,
					"sku_url": "http://item.jd.com/43139143227.html"
				},
				{
					"price": "158.49",
					"orginal_price": "158.49",
					"properties": "0:2;1:3",
					"properties_name": "0:2:尺码:39;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143228,
					"sku_url": "http://item.jd.com/43139143228.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:3;1:3",
					"properties_name": "0:3:尺码:40;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143229,
					"sku_url": "http://item.jd.com/43139143229.html"
				},
				{
					"price": "158.55",
					"orginal_price": "158.55",
					"properties": "0:4;1:3",
					"properties_name": "0:4:尺码:44.5;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143230,
					"sku_url": "http://item.jd.com/43139143230.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:5;1:3",
					"properties_name": "0:5:尺码:40.5;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143231,
					"sku_url": "http://item.jd.com/43139143231.html"
				},
				{
					"price": "158.20",
					"orginal_price": "158.20",
					"properties": "0:6;1:3",
					"properties_name": "0:6:尺码:41;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 10061004645935,
					"sku_url": "http://item.jd.com/10061004645935.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:7;1:3",
					"properties_name": "0:7:尺码:42.5;1:3:颜色:-8黑(推荐)",
					"quantity": "99",
					"sku_id": 43139143233,
					"sku_url": "http://item.jd.com/43139143233.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:0;1:4",
					"properties_name": "0:0:尺码:43;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143234,
					"sku_url": "http://item.jd.com/43139143234.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:1;1:4",
					"properties_name": "0:1:尺码:42;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143235,
					"sku_url": "http://item.jd.com/43139143235.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:2;1:4",
					"properties_name": "0:2:尺码:39;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143236,
					"sku_url": "http://item.jd.com/43139143236.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:3;1:4",
					"properties_name": "0:3:尺码:40;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143237,
					"sku_url": "http://item.jd.com/43139143237.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:4;1:4",
					"properties_name": "0:4:尺码:44.5;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143238,
					"sku_url": "http://item.jd.com/43139143238.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:5;1:4",
					"properties_name": "0:5:尺码:40.5;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143239,
					"sku_url": "http://item.jd.com/43139143239.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:6;1:4",
					"properties_name": "0:6:尺码:41;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 10061004645936,
					"sku_url": "http://item.jd.com/10061004645936.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:7;1:4",
					"properties_name": "0:7:尺码:42.5;1:4:颜色:-11黑/金属金(皮面)",
					"quantity": "99",
					"sku_id": 43139143241,
					"sku_url": "http://item.jd.com/43139143241.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:0;1:5",
					"properties_name": "0:0:尺码:43;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143242,
					"sku_url": "http://item.jd.com/43139143242.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:1;1:5",
					"properties_name": "0:1:尺码:42;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143243,
					"sku_url": "http://item.jd.com/43139143243.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:2;1:5",
					"properties_name": "0:2:尺码:39;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143244,
					"sku_url": "http://item.jd.com/43139143244.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:3;1:5",
					"properties_name": "0:3:尺码:40;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143245,
					"sku_url": "http://item.jd.com/43139143245.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:4;1:5",
					"properties_name": "0:4:尺码:44.5;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143246,
					"sku_url": "http://item.jd.com/43139143246.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:5;1:5",
					"properties_name": "0:5:尺码:40.5;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143247,
					"sku_url": "http://item.jd.com/43139143247.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:6;1:5",
					"properties_name": "0:6:尺码:41;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 10061004645937,
					"sku_url": "http://item.jd.com/10061004645937.html"
				},
				{
					"price": "189.00",
					"orginal_price": "189.00",
					"properties": "0:7;1:5",
					"properties_name": "0:7:尺码:42.5;1:5:颜色:-1象牙白/泥沙灰/黑",
					"quantity": "99",
					"sku_id": 43139143249,
					"sku_url": "http://item.jd.com/43139143249.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:0;1:6",
					"properties_name": "0:0:尺码:43;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622595,
					"sku_url": "http://item.jd.com/17160622595.html"
				},
				{
					"price": "158.60",
					"orginal_price": "158.60",
					"properties": "0:1;1:6",
					"properties_name": "0:1:尺码:42;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622594,
					"sku_url": "http://item.jd.com/17160622594.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:2;1:6",
					"properties_name": "0:2:尺码:39;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622593,
					"sku_url": "http://item.jd.com/17160622593.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:3;1:6",
					"properties_name": "0:3:尺码:40;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622600,
					"sku_url": "http://item.jd.com/17160622600.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:4;1:6",
					"properties_name": "0:4:尺码:44.5;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622598,
					"sku_url": "http://item.jd.com/17160622598.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:5;1:6",
					"properties_name": "0:5:尺码:40.5;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622599,
					"sku_url": "http://item.jd.com/17160622599.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:6;1:6",
					"properties_name": "0:6:尺码:41;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 10061004645938,
					"sku_url": "http://item.jd.com/10061004645938.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:7;1:6",
					"properties_name": "0:7:尺码:42.5;1:6:颜色:-12黑/象牙白(皮面)",
					"quantity": "99",
					"sku_id": 17160622596,
					"sku_url": "http://item.jd.com/17160622596.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:0;1:7",
					"properties_name": "0:0:尺码:43;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195191,
					"sku_url": "http://item.jd.com/16878195191.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:1;1:7",
					"properties_name": "0:1:尺码:42;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195194,
					"sku_url": "http://item.jd.com/16878195194.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:2;1:7",
					"properties_name": "0:2:尺码:39;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195192,
					"sku_url": "http://item.jd.com/16878195192.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:3;1:7",
					"properties_name": "0:3:尺码:40;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195187,
					"sku_url": "http://item.jd.com/16878195187.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:4;1:7",
					"properties_name": "0:4:尺码:44.5;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195188,
					"sku_url": "http://item.jd.com/16878195188.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:5;1:7",
					"properties_name": "0:5:尺码:40.5;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195189,
					"sku_url": "http://item.jd.com/16878195189.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:6;1:7",
					"properties_name": "0:6:尺码:41;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 10061004645939,
					"sku_url": "http://item.jd.com/10061004645939.html"
				},
				{
					"price": "158.99",
					"orginal_price": "158.99",
					"properties": "0:7;1:7",
					"properties_name": "0:7:尺码:42.5;1:7:颜色:-13雾灰/黑(皮面)",
					"quantity": "99",
					"sku_id": 16878195193,
					"sku_url": "http://item.jd.com/16878195193.html"
				}
			]
		},
		"seller_id": "",
		"sales": "",
		"props_list": {
			"0:0": "尺码:43",
			"0:1": "尺码:42",
			"0:2": "尺码:39",
			"0:3": "尺码:40",
			"0:4": "尺码:44.5",
			"0:5": "尺码:40.5",
			"0:6": "尺码:41",
			"0:7": "尺码:42.5",
			"1:0": "颜色:21-5雾灰/黑/安踏白",
			"1:1": "颜色:5527-7象牙白/雾灰-网面",
			"1:2": "颜色:-6黑/安踏白",
			"1:3": "颜色:-8黑(推荐)",
			"1:4": "颜色:-11黑/金属金(皮面)",
			"1:5": "颜色:-1象牙白/泥沙灰/黑",
			"1:6": "颜色:-12黑/象牙白(皮面)",
			"1:7": "颜色:-13雾灰/黑(皮面)"
		},
		"seller_info": {
			"level": "",
			"shop_type": "",
			"user_num_id": "213251",
			"cid": "",
			"delivery_score": "",
			"item_score": "",
			"score_p": "",
			"zhuy": "https://mall.jd.com/index-213251.html",
			"search_id": "",
			"nick": "安踏悠购专卖店",
			"shop_name": "安踏悠购专卖店",
			"title": "安踏悠购专卖店"
		},
		"tmall": false,
		"error": "",
		"warning": "",
		"url_log": [],
		"coupon_activity": "",
		"stuff_status": "",
		"shopinfo": [],
		"shop_id": "213251",
		"method": "",
		"promo_type": "",
		"props_img": {
			"0:0;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:1;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:2;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:3;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:4;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:5;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:6;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:7;1:0": "//img14.360buyimg.com/n9/s40x40_jfs/t1/109148/30/42947/123671/64e32586Fdbd010c2/72347b1566bdbb3a.jpg",
			"0:0;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:1;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:2;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:3;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:4;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:5;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:6;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:7;1:1": "//img10.360buyimg.com/n9/s40x40_jfs/t1/143752/40/30965/219988/64db3fd4F0d46fdfd/515abfeb70dd77d8.jpg",
			"0:0;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:1;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:2;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:3;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:4;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:5;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:6;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:7;1:2": "//img13.360buyimg.com/n9/s40x40_jfs/t1/212327/16/35200/203459/64db3fd6F22db2a4e/e9a02b9d05094af0.jpg",
			"0:0;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:1;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:2;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:3;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:4;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:5;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:6;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:7;1:3": "//img12.360buyimg.com/n9/s40x40_jfs/t1/88241/15/30794/190920/64db3fd8F7fa68b72/6fdcf5561d162f82.jpg",
			"0:0;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:1;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:2;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:3;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:4;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:5;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:6;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:7;1:4": "//img10.360buyimg.com/n9/s40x40_jfs/t1/106970/39/37929/149155/64f6e86fF60bb64ee/e2de1c0b36bf8847.jpg",
			"0:0;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:1;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:2;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:3;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:4;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:5;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:6;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:7;1:5": "//img13.360buyimg.com/n9/s40x40_jfs/t1/178776/2/36689/162827/64db3fdbFc527524f/f137129a51953dec.jpg",
			"0:0;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:1;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:2;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:3;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:4;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:5;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:6;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:7;1:6": "//img14.360buyimg.com/n9/s40x40_jfs/t1/215931/14/34459/109908/64f6e882F982d45ae/d9af5091e6f242b2.jpg",
			"0:0;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:1;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:2;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:3;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:4;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:5;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:6;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg",
			"0:7;1:7": "//img14.360buyimg.com/n9/s40x40_jfs/t1/125759/10/37688/165217/64f6e893Ffb546200/bd0a32f0289be67a.jpg"
		},
		"data_from": "ti",
		"shop_item": [],
		"relate_items": []
	},
	"secache": "29126e588509ddfeccfca167642f7bc2",
	"secache_time": 1695029206,
	"secache_date": "2023-09-18 17:26:46",
	"translate_status": "",
	"translate_time": 0,
	"language": {
		"default_lang": "cn",
		"current_lang": "cn"
	},
	"error": "",
	"reason": "",
	"error_code": "0000",
	"cache": 0,
	"api_info": "today:138 max:10100 all[266=138+99+29];expires:2030-12-31",
	"execution_time": "6.499",
	"server_time": "Beijing/2023-09-18 17:26:46",
	"client_ip": "106.6.37.3",
	"call_args": [
		"10335871600"
	],
	"api_type": "jd",
	"translate_language": "zh-CN",
	"translate_engine": "baidu",
	"server_memory": "3.76MB",
	"request_id": "gw-3.650817cf9241a",
	"last_id": "2041168807"
}
相关推荐
权^7 分钟前
MySQL--聚合查询、联合查询、子查询、合并查询(上万字超详解!!!)
大数据·数据库·学习·mysql
前端李易安13 分钟前
ajax的原理,使用场景以及如何实现
前端·ajax·okhttp
冷静 包容14 分钟前
C语言学习之 没有重复项数字的全排列
c语言·开发语言·学习
碳苯19 分钟前
【rCore OS 开源操作系统】Rust 枚举与模式匹配
开发语言·人工智能·后端·rust·操作系统·os
结衣结衣.32 分钟前
C++ 类和对象的初步介绍
java·开发语言·数据结构·c++·笔记·学习·算法
学习使我变快乐33 分钟前
C++:静态成员
开发语言·c++
TJKFYY34 分钟前
Java.数据结构.HashSet
java·开发语言·数据结构
杰哥在此43 分钟前
Python知识点:如何使用Multiprocessing进行并行任务管理
linux·开发语言·python·面试·编程
小白学大数据43 分钟前
User-Agent在WebMagic爬虫中的重要性
开发语言·爬虫·http
汪子熙44 分钟前
Angular 服务器端应用 ng-state tag 的作用介绍
前端·javascript·angular.js