{
  "openapi": "3.0.0",
  "info": {
    "title": "Taobao and Tmall Shop Product List API (V1)",
    "version": "1.0.0",
    "description": "Get Taobao and Tmall shop Product List data, including item titles, prices, and images, for seller research and catalog tracking."
  },
  "paths": {
    "/api/taobao/get-shop-item-list/v1": {
      "get": {
        "tags": [
          "Taobao and Tmall"
        ],
        "summary": "Shop Product List",
        "description": "Get Taobao and Tmall shop Product List data, including item titles, prices, and images, for seller research and catalog tracking.",
        "operationId": "getShopItemListV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userId",
            "in": "query",
            "description": "Shop identifier. Also known as Seller ID or User ID (they refer to the same value).",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "Sort order for the result set.\n\nAvailable Values:\n- `_sale`: Sales\n- `_default`: Default",
            "required": false,
            "schema": {
              "type": "string",
              "default": "_sale",
              "description": "Taobao shop item list sorting options",
              "enum": [
                "_sale",
                "_default"
              ]
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "Page number for pagination.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "resultList": []
                  }
                }
              }
            }
          }
        },
        "x-order": "11001600"
      }
    }
  },
  "components": {}
}