{
  "openapi": "3.0.0",
  "info": {
    "title": "JD.com Product Details API (V3)",
    "version": "1.0.0",
    "description": "Get JD.com product Details data, including product metadata, current price, available coupon and promotion information, and the price after applying coupons, for catalog analysis, price monitoring, deal tracking, and ecommerce research."
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global (default)"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn (optional for Mainland China)"
    }
  ],
  "paths": {
    "/api/jd/get-item-detail/v3": {
      "get": {
        "tags": [
          "JD.com"
        ],
        "summary": "Product Details",
        "description": "Get JD.com product Details data, including product metadata, current price, available coupon and promotion information, and the price after applying coupons, for catalog analysis, price monitoring, deal tracking, and ecommerce research.",
        "operationId": "getApiJdGetItemDetailV3",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "itemId",
            "in": "query",
            "description": "A unique product identifier on JD.com (item ID).",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "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": "This endpoint can retrieve available coupons and the price after applying coupons."
          },
          {
            "type": "tip",
            "content": "This endpoint does not support some products."
          }
        ]
      }
    }
  },
  "components": {}
}