{
  "openapi": "3.0.0",
  "info": {
    "title": "TikTok Shop Product Details API (V1)",
    "version": "1.0.0",
    "description": "Get TikTok Shop product Details data, including title, description, and price, for building product catalogs, price and stock monitoring, and in-depth product analysis."
  },
  "paths": {
    "/api/tiktok-shop/get-product-detail/v1": {
      "get": {
        "tags": [
          "TikTok Shop"
        ],
        "summary": "Product Details",
        "description": "Get TikTok Shop product Details data, including title, description, and price, for building product catalogs, price and stock monitoring, and in-depth product analysis.",
        "operationId": "getProductDetailV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Authentication token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "productId",
            "in": "query",
            "description": "TikTok Shop Product ID.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "description": "Target region for product detail.\n\nAvailable Values:\n- `US`: United States\n- `GB`: United Kingdom\n- `SG`: Singapore\n- `MY`: Malaysia\n- `PH`: Philippines\n- `TH`: Thailand\n- `VN`: Vietnam\n- `ID`: Indonesia",
            "required": false,
            "schema": {
              "type": "string",
              "default": "US",
              "description": "TikTok Shop Enum",
              "enum": [
                "US",
                "GB",
                "SG",
                "MY",
                "PH",
                "TH",
                "VN",
                "ID"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "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": {}
}