{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb Awards Summary API (V1)",
    "version": "1.0.0",
    "description": "Get IMDb title Awards Summary data, including nominations, for title benchmarking and awards research."
  },
  "paths": {
    "/api/imdb/title-awards-summary-query/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "Awards Summary",
        "description": "Get IMDb title Awards Summary data, including nominations, for title benchmarking and awards research.",
        "operationId": "titleAwardsSummaryQuery",
        "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": {
                      "prestigiousAwardSummary": null,
                      "totalWins": {
                        "total": 29
                      },
                      "totalNominations": {
                        "total": 128
                      },
                      "ratingsSummary": {
                        "topRanking": {
                          "rank": 1400,
                          "text": {
                            "value": "Top Rated"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34001700
      }
    }
  },
  "components": {}
}