{
  "openapi": "3.0.0",
  "info": {
    "title": "TikTok Shop Product Search API (V1)",
    "version": "1.0.0",
    "description": "Get TikTok Shop product Search data, including title, price, and sales, for market research and trend analysis, competitor product discovery, and monitoring product popularity in specific regions."
  },
  "paths": {
    "/api/tiktok-shop/search-products/v1": {
      "get": {
        "tags": [
          "TikTok Shop"
        ],
        "summary": "Product Search",
        "description": "Get TikTok Shop product Search data, including title, price, and sales, for market research and trend analysis, competitor product discovery, and monitoring product popularity in specific regions.",
        "operationId": "searchProductsV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Authentication token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "keyword",
            "in": "query",
            "description": "Search keyword.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "description": "Target region for product search.\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"
              ]
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Search result offset.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "pageToken",
            "in": "query",
            "description": "Pagination token for the next page.",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "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": "22501000"
      }
    }
  },
  "components": {}
}