{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb剧情摘要 API (V1)",
    "version": "1.0.0",
    "description": "获取IMDb标题剧情摘要数据，包括核心指标、趋势信号和性能指标，用于显示电影或电视节目的详细剧情描述。"
  },
  "paths": {
    "/api/imdb/title-plot-query/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "剧情摘要",
        "description": "获取IMDb标题剧情摘要数据，包括核心指标、趋势信号和性能指标，用于显示电影或电视节目的详细剧情描述。",
        "operationId": "titlePlotQuery",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "用户的鉴权令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "id",
            "in": "query",
            "description": "该标题的唯一IMDb ID（例如：tt12037194）。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "languageCountry",
            "in": "query",
            "description": "语言与国家/地区偏好。\n\n可用值：\n- `en_US`: 英语（美国）\n- `fr_CA`: 法语（加拿大）\n- `fr_FR`: 法语（法国）\n- `de_DE`: 德语（德国）\n- `hi_IN`: 印地语（印度）\n- `it_IT`: 意大利语（意大利）\n- `pt_BR`: 葡萄牙语（巴西）\n- `es_ES`: 西班牙语（西班牙）\n- `es_US`: 西班牙语（美国）\n- `es_MX`: 西班牙语（墨西哥）",
            "required": false,
            "schema": {
              "type": "string",
              "default": "en_US",
              "description": "Language and country options for IMDb data.",
              "enum": [
                "en_US",
                "fr_CA",
                "fr_FR",
                "de_DE",
                "hi_IN",
                "it_IT",
                "pt_BR",
                "es_ES",
                "es_US",
                "es_MX"
              ]
            }
          }
        ],
        "responses": {
          "default": {
            "description": "默认响应",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "title": {
                      "id": "tt12037194",
                      "plot": {
                        "id": "po5364909",
                        "plotText": {
                          "plainText": "After being snatched from the Green Place of Many Mothers, while the tyrants Dementus and Immortan Joe fight for power and control, the young Furiosa must survive many trials as she puts together the means to find her way home."
                        }
                      },
                      "type": {
                        "__typename": "TitleType",
                        "id": "movie",
                        "text": "Movie",
                        "categories": [
                          {
                            "id": "movie",
                            "text": "Movie",
                            "value": "movie"
                          }
                        ],
                        "canHaveEpisodes": false,
                        "isEpisode": false,
                        "isSeries": false,
                        "displayableProperty": {
                          "value": {
                            "plainText": ""
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34001900
      }
    }
  },
  "components": {}
}