{
  "openapi": "3.0.0",
  "info": {
    "title": "Douban Movie Comments API (V1)",
    "version": "1.0.0",
    "description": "Get Douban movie Comments data, including ratings, snippets, and interaction counts, for quick sentiment sampling and review monitoring."
  },
  "paths": {
    "/api/douban/get-movie-comments/v1": {
      "get": {
        "tags": [
          "Douban Movie"
        ],
        "summary": "Comments",
        "description": "Get Douban movie Comments data, including ratings, snippets, and interaction counts, for quick sentiment sampling and review monitoring.",
        "operationId": "getMovieCommentsV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "subjectId",
            "in": "query",
            "description": "The unique ID for a movie or TV subject on Douban.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "Sort order for the result set.\n\nAvailable Values:\n- `time`: Time\n- `new_score`: New Score",
            "required": false,
            "schema": {
              "type": "string",
              "default": "time",
              "description": "Douban Comments Sort",
              "enum": [
                "time",
                "new_score"
              ]
            }
          },
          {
            "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": {
                    "comments": []
                  }
                }
              }
            }
          }
        },
        "x-order": "21001200"
      }
    }
  },
  "components": {}
}