
前言
淘宝铺货核心依赖两类API,分别对应「获取货源商品数据」和「自有店铺上架商品」,适配跨店铺货、多平台同步、批量上架等企业场景,全程合规调用,避免爬虫风险。
taobao.item_get_full(完整版,推荐铺货用)taobao.item.add(新品上架)、taobao.item.update(商品更新)以下为铺货核心链路的完整JSON返回示例,字段精简、可直接用于开发解析,适配企业铺货系统。
{
"item_get_response": {
"item": {
"num_iid": 680123456789,
"title": "2026夏季新款纯棉透气短袖T恤 宽松百搭多色",
"price": "89.00",
"promotion_price": "59.00",
"cid": 50015261,
"category_name": "女装>T恤",
"pic_url": "https://img.taobao.com/imgextra/i1/xxx.jpg",
"image_list": [
"https://img.taobao.com/imgextra/i1/xxx1.jpg",
"https://img.taobao.com/imgextra/i1/xxx2.jpg"
],
"desc": "<p>面料:100%纯棉</p><p>尺码:M/L/XL</p>",
"sku_list": {
"sku": [
{
"sku_id": 12345678901,
"price": "59.00",
"quantity": 500,
"properties_name": "颜色:白色;尺码:L"
},
{
"sku_id": 12345678902,
"price": "59.00",
"quantity": 420,
"properties_name": "颜色:黑色;尺码:XL"
}
]
},
"location": "广东 广州",
"modified": "2026-05-19 11:30:22"
},
"request_id": "top_req_260519113000123"
}
}{
"item_add_response": {
"num_iid": 680987654321,
"item_id": 680987654321,
"title": "2026夏季新款纯棉透气短袖T恤 宽松百搭多色",
"status": "onsale",
"cid": 50015261,
"created": "2026-05-19 11:35:40",
"msg": "商品上架成功",
"request_id": "top_req_260519113500456"
}
}{
"items_batch_add_response": {
"total_count": 10,
"success_count": 9,
"fail_count": 1,
"success_items": [
{
"num_iid": 680987654321,
"title": "2026夏季新款纯棉透气短袖T恤",
"status": "onsale"
},
{
"num_iid": 680987654322,
"title": "休闲百搭牛仔裤",
"status": "onsale"
}
],
"fail_items": [
{
"title": "夏季运动鞋",
"error_msg": "类目ID错误,无法上架"
}
],
"request_id": "top_req_260519114000789"
}
}原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。