{
  "openapi": "3.0.0",
  "info": {
    "title": "JD.com Shop Product List API (V1)",
    "version": "1.0.0",
    "description": "Get JD.com shop Product List data, including item titles, prices, and images, for catalog tracking and seller research."
  },
  "paths": {
    "/api/jd/get-shop-item-list/v1": {
      "get": {
        "tags": [
          "JD.com"
        ],
        "summary": "Shop Product List",
        "description": "Get JD.com shop Product List data, including item titles, prices, and images, for catalog tracking and seller research.",
        "operationId": "getShopItemListV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "shopId",
            "in": "query",
            "description": "A unique shop identifier on JD.com (Shop ID).",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "Page number for paginated comments.",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {}
            }
          }
        },
        "x-order": "19001200"
      }
    }
  },
  "components": {}
}