{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb原产国 API (V1)",
    "version": "1.0.0",
    "description": "获取IMDb标题原产国数据，包括国家名称和区域元数据，用于目录丰富和区域内容分析。"
  },
  "paths": {
    "/api/imdb/title-countries-of-origin/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "原产国",
        "description": "获取IMDb标题原产国数据，包括国家名称和区域元数据，用于目录丰富和区域内容分析。",
        "operationId": "titleCountriesOfOrigin",
        "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": {
                      "countriesOfOrigin": {
                        "countries": [
                          {
                            "__typename": "CountryOfOrigin",
                            "id": "AU",
                            "text": "Australia"
                          },
                          {
                            "__typename": "CountryOfOrigin",
                            "id": "US",
                            "text": "United States"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34002800
      }
    }
  },
  "components": {}
}