{
  "openapi": "3.0.0",
  "info": {
    "title": "Douban Movie Review Details API (V1)",
    "version": "1.0.0",
    "description": "Get Douban movie Review Details data, including metadata, content fields, and engagement signals, for review archiving and detailed opinion analysis."
  },
  "paths": {
    "/api/douban/get-movie-review-detail/v1": {
      "get": {
        "tags": [
          "Douban Movie"
        ],
        "summary": "Review Details",
        "description": "Get Douban movie Review Details data, including metadata, content fields, and engagement signals, for review archiving and detailed opinion analysis.",
        "operationId": "getMovieReviewDetailsV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "reviewId",
            "in": "query",
            "description": "The unique ID for a specific review on Douban.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "title": "",
                    "user": "",
                    "rating": "力荐很差很差力荐力荐推荐力荐还行推荐还行还行还行力荐较差",
                    "time": "",
                    "content": "",
                    "forward_count": 0,
                    "collectCount": 0
                  }
                }
              }
            }
          }
        },
        "x-order": "21001100"
      }
    }
  },
  "components": {}
}