{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb Plot Summary API (V1)",
    "version": "1.0.0",
    "description": "Get IMDb title Plot Summary data, including core metrics, trend signals, and performance indicators, for displaying a detailed description of the storyline for a movie or TV show."
  },
  "paths": {
    "/api/imdb/title-plot-query/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "Plot Summary",
        "description": "Get IMDb title Plot Summary data, including core metrics, trend signals, and performance indicators, for displaying a detailed description of the storyline for a movie or TV show.",
        "operationId": "titlePlotQuery",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "User's authentication token.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "id",
            "in": "query",
            "description": "The unique IMDb ID of the title (e.g., tt12037194).",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "languageCountry",
            "in": "query",
            "description": "Language and country preferences.\n\nAvailable Values:\n- `en_US`: English (US)\n- `fr_CA`: French (Canada)\n- `fr_FR`: French (France)\n- `de_DE`: German (Germany)\n- `hi_IN`: Hindi (India)\n- `it_IT`: Italian (Italy)\n- `pt_BR`: Portuguese (Brazil)\n- `es_ES`: Spanish (Spain)\n- `es_US`: Spanish (US)\n- `es_MX`: Spanish (Mexico)",
            "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": "default response",
            "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": {}
}