API 产品/Shopee 电商 API/获取商品详情

获取商品详情

GET/v1/items/{item_id}

接口说明

根据商品 ID 获取商品详细信息。

请求

GET /v1/items/{item_id}

路径参数

参数 类型 必填 说明
item_id integer 商品 ID

响应示例

{
  "code": 0,
  "message": "success",
  "data": {
    "item_id": 1001234,
    "name": "运动跑鞋 男款",
    "description": "轻量透气,适合日常跑步训练",
    "status": "NORMAL",
    "price": 29900,
    "original_price": 39900,
    "stock": 50,
    "category_id": 2001,
    "images": [
      "https://cdn.shopee.com/img/abc123.jpg"
    ],
    "attributes": [
      { "name": "颜色", "value": "黑色" },
      { "name": "尺码", "value": "42" }
    ],
    "created_at": 1700000000,
    "updated_at": 1700100000
  }
}
获取商品详情 — Shopee 电商 API — bodapi