
在国内电商选品、多平台铺货、价格监控、CPS分销的业务场景中,京东商品详情接口是开发者和电商从业者最核心的结构化数据入口。它无需搭建复杂的页面爬虫体系,就能稳定获取全维度的京东商品信息,大幅降低电商相关业务的开发门槛。
这套接口可以返回国内电商业务开发中几乎所有需要的京东商品核心字段,完全适配选品分析、库存同步、价格监控等多种场景:
新手跟着3步就能完成基础调用,没有复杂的前置依赖:
这是脱敏后的标准返回结构,完全匹配京东联盟官方商品详情接口的原生返回格式,核心字段都标注了业务含义,可直接用于开发调试参考:
{
"jd_union_open_goods_detail_query_response": {
"code": "0",
"msg": "success",
"requestId": "req_2026081015423789",
"data": {
"goodsInfo": {
"skuId": "100078965432",
"title": "2026新款家用空气净化器 除甲醛除菌 智能数显 适用30-40㎡空间",
"brandName": "净优",
"categoryName": "家用电器 > 生活电器 > 空气净化器",
"shopName": "净优京东自营旗舰店",
"isJdSelf": true,
"itemUrl": "https://item.jd.com/100078965432.html",
"priceInfo": {
"originalPrice": "899.00",
"discountPrice": "599.00"
},
"couponInfo": {
"couponDiscount": "100.00",
"platformSubsidy": "50.00",
"finalPrice": "449.00",
"couponDesc": "满599减100店铺券+平台50元专属补贴"
},
"commissionInfo": {
"commissionRate": "15.00",
"commissionMoney": "67.35",
"promotionUrl": "https://union-click.jd.com/xxx123"
},
"salesInfo": {
"totalSales": 126800,
"monthSales": 8960
},
"stockInfo": {
"totalStock": 3260,
"isSale": true,
"deliveryTime": "次日达"
},
"imageInfo": {
"mainImgList": [
"https://img14.360buyimg.com/n1/jfs/t1/208923/36/25678/345678/64abc123F8a7d9012/abcdef123456.jpg",
"https://img12.360buyimg.com/n1/jfs/t1/198765/22/26789/234567/64def456G7b8e0234/ghij78901234.jpg"
],
"detailImgList": [
"https://img10.360buyimg.com/imagetools/jfs/t1/187654/11/27890/123456/64ghi789H6c9f1345/klmnop345678.jpg"
]
},
"skuList": [
{
"skuId": "10007896543201",
"specText": "基础款 白色",
"skuPrice": "449.00",
"skuStock": 1860
},
{
"skuId": "10007896543202",
"specText": "智能款 带APP控制 白色",
"skuPrice": "599.00",
"skuStock": 1400
}
],
"productParams": [
{"name": "CADR值", "value": "320m³/h"},
{"name": "噪音", "value": "23-61dB"},
{"name": "滤网寿命", "value": "6-12个月"}
],
"commentSummary": {
"goodRateShow": "98%",
"commentCount": 23680
},
"bsrInfo": {
"rank": 8,
"categoryName": "家用空气净化器类目"
}
}
}
}
}原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。