{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb Contribution Questions API (V1)",
    "version": "1.0.0",
    "description": "Get IMDb title Contribution Questions data, including specific IMDb title, for data maintenance workflows and title metadata review."
  },
  "paths": {
    "/api/imdb/title-contribution-questions/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "Contribution Questions",
        "description": "Get IMDb title Contribution Questions data, including specific IMDb title, for data maintenance workflows and title metadata review.",
        "operationId": "titleContributionQuestions",
        "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": {
                      "__typename": "Title",
                      "id": "tt12037194",
                      "titleText": {
                        "text": "Furiosa: A Mad Max Saga",
                        "isOriginalTitle": true
                      },
                      "originalTitleText": {
                        "text": "Furiosa: A Mad Max Saga",
                        "isOriginalTitle": true
                      },
                      "releaseYear": {
                        "__typename": "YearRange",
                        "year": 2024,
                        "endYear": null
                      },
                      "releaseDate": {
                        "__typename": "ReleaseDate",
                        "month": 5,
                        "day": 24,
                        "year": 2024,
                        "country": {
                          "id": "US"
                        },
                        "restriction": null,
                        "attributes": [],
                        "displayableProperty": {
                          "qualifiersInMarkdownList": null
                        }
                      },
                      "titleType": {
                        "__typename": "TitleType",
                        "id": "movie",
                        "text": "Movie",
                        "categories": [
                          {
                            "id": "movie",
                            "text": "Movie",
                            "value": "movie"
                          }
                        ],
                        "canHaveEpisodes": false,
                        "isEpisode": false,
                        "isSeries": false,
                        "displayableProperty": {
                          "value": {
                            "plainText": ""
                          }
                        }
                      },
                      "primaryImage": {
                        "__typename": "Image",
                        "id": "rm645622785",
                        "url": "https://m.media-amazon.com/images/M/MV5BNTcwYWE1NTYtOWNiYy00NzY3LWIwY2MtNjJmZDkxNDNmOWE1XkEyXkFqcGc@._V1_.jpg",
                        "height": 4096,
                        "width": 2764
                      },
                      "contributionQuestions": null
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34002000
      }
    }
  },
  "components": {}
}