{
  "openapi": "3.0.0",
  "info": {
    "title": "Weibo Post Comments API (V1)",
    "version": "1.0.0",
    "description": "Get Weibo post Comments data, including text, authors, and timestamps, for feedback analysis."
  },
  "paths": {
    "/api/weibo/get-post-comments/v1": {
      "get": {
        "tags": [
          "Weibo"
        ],
        "summary": "Post Comments",
        "description": "Get Weibo post Comments data, including text, authors, and timestamps, for feedback analysis.",
        "operationId": "getPostCommentsV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "API access token.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mid",
            "in": "query",
            "description": "Weibo post mid.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "Sort order for the result set.\n\nAvailable Values:\n- `TIME`: Time\n- `HOT`: Hot",
            "required": false,
            "schema": {
              "type": "string",
              "default": "TIME",
              "description": "Post Comments Sort",
              "enum": [
                "TIME",
                "HOT"
              ]
            }
          },
          {
            "name": "maxId",
            "in": "query",
            "description": "Pagination cursor returned by the previous response.",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {}
            }
          }
        },
        "x-order": "17001800"
      }
    }
  },
  "components": {}
}