{
  "openapi": "3.0.0",
  "info": {
    "title": "TikTok Shop商品详情 API (V1)",
    "version": "1.0.0",
    "description": "获取抖音店铺商品详情数据，包括标题、描述和价格，用于构建产品目录、价格和库存监控，以及深入的产品分析。"
  },
  "paths": {
    "/api/tiktok-shop/get-product-detail/v1": {
      "get": {
        "tags": [
          "TikTok Shop"
        ],
        "summary": "商品详情",
        "description": "获取抖音店铺商品详情数据，包括标题、描述和价格，用于构建产品目录、价格和库存监控，以及深入的产品分析。",
        "operationId": "getProductDetailV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此API服务的鉴权令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "productId",
            "in": "query",
            "description": "TikTok Shop 产品 ID。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "description": "商品详情的目标区域。\n\n可用值：\n- `US`: 美国\n- `GB`: 英国\n- `SG`: 新加坡\n- `MY`: 马来西亚\n- `PH`: 菲律宾\n- `TH`: 泰国\n- `VN`: 越南\n- `ID`: 印度尼西亚",
            "required": false,
            "schema": {
              "type": "string",
              "default": "US",
              "description": "TikTok Shop Enum",
              "enum": [
                "US",
                "GB",
                "SG",
                "MY",
                "PH",
                "TH",
                "VN",
                "ID"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "22501100"
      }
    }
  },
  "components": {}
}