{
  "openapi": "3.0.0",
  "info": {
    "title": "Taobao and Tmall Shop Product List API (V4)",
    "version": "1.0.0",
    "description": "Get Taobao and Tmall shop Product List data from a seller ID, including product titles, prices, images, pagination data, and shop item attributes, for seller catalog monitoring, product research, assortment tracking, and ecommerce analysis."
  },
  "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/taobao/get-shop-item-list/v4": {
      "get": {
        "tags": [
          "Taobao and Tmall"
        ],
        "summary": "Shop Product List",
        "description": "Get Taobao and Tmall shop Product List data from a seller ID, including product titles, prices, images, pagination data, and shop item attributes, for seller catalog monitoring, product research, assortment tracking, and ecommerce analysis.",
        "operationId": "getApiTaobaoGetShopItemListV4",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sellerId",
            "in": "query",
            "description": "Seller identifier on Taobao/Tmall. This value is sent to the supplier as `userId`.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "Page number for pagination.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "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": "11001825",
        "x-recommended": true,
        "x-api-version": "v4",
        "x-highlights": [
          {
            "type": "tip",
            "content": "Use `sellerId` to pass the Taobao/Tmall seller user ID. The supplier maps this value to `userId` internally."
          }
        ]
      }
    }
  },
  "components": {}
}