{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb Recommendations API (V1)",
    "version": "1.0.0",
    "description": "Get IMDb title Recommendations data, including related titles and suggestion metadata, for content discovery and recommendation analysis."
  },
  "paths": {
    "/api/imdb/title-more-like-this-query/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "Recommendations",
        "description": "Get IMDb title Recommendations data, including related titles and suggestion metadata, for content discovery and recommendation analysis.",
        "operationId": "titleMoreLikeThisQuery",
        "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": {
                      "connections": {
                        "edges": [
                          {
                            "node": {
                              "category": {
                                "id": "follows",
                                "text": "Follows"
                              },
                              "associatedTitle": {
                                "id": "tt1392190"
                              }
                            }
                          }
                        ]
                      },
                      "moreLikeThisTitles": {
                        "edges": [
                          {
                            "node": {
                              "id": "tt1392190"
                            }
                          },
                          {
                            "node": {
                              "id": "tt0079501"
                            }
                          },
                          {
                            "node": {
                              "id": "tt0082694"
                            }
                          },
                          {
                            "node": {
                              "id": "tt0089530"
                            }
                          },
                          {
                            "node": {
                              "id": "tt4575512"
                            }
                          },
                          {
                            "node": {
                              "id": "tt15239678"
                            }
                          },
                          {
                            "node": {
                              "id": "tt1160419"
                            }
                          },
                          {
                            "node": {
                              "id": "tt6263850"
                            }
                          },
                          {
                            "node": {
                              "id": "tt18412256"
                            }
                          },
                          {
                            "node": {
                              "id": "tt10366206"
                            }
                          },
                          {
                            "node": {
                              "id": "tt17279496"
                            }
                          },
                          {
                            "node": {
                              "id": "tt2911666"
                            }
                          },
                          {
                            "node": {
                              "id": "tt0480249"
                            }
                          },
                          {
                            "node": {
                              "id": "tt6146586"
                            }
                          },
                          {
                            "node": {
                              "id": "tt11138512"
                            }
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34002300
      }
    }
  },
  "components": {}
}