{
  "openapi": "3.0.0",
  "info": {
    "title": "京东商品详情 API (V3)",
    "version": "1.0.0",
    "description": "获取京东商品详情数据，包括商品元数据、当前价格、可用优惠券和促销信息，以及应用优惠券后的价格，用于目录分析、价格监控、交易跟踪和电商研究。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/jd/get-item-detail/v3": {
      "get": {
        "tags": [
          "京东"
        ],
        "summary": "商品详情",
        "description": "获取京东商品详情数据，包括商品元数据、当前价格、可用优惠券和促销信息，以及应用优惠券后的价格，用于目录分析、价格监控、交易跟踪和电商研究。",
        "operationId": "getApiJdGetItemDetailV3",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此 API 服务的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "itemId",
            "in": "query",
            "description": "京东商品的唯一产品标识符（商品ID）。",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "404",
                        "500",
                        "600",
                        "601",
                        "602"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "requestId": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "19001030",
        "x-api-version": "v3",
        "x-highlights": [
          {
            "type": "tip",
            "content": "此接口可检索可用优惠券及应用优惠券后的价格。"
          },
          {
            "type": "tip",
            "content": "此接口不支持部分商品。"
          }
        ]
      }
    }
  },
  "components": {}
}