action trakt_get_id_lookup_results { label: "Get ID lookup results" description: "#### 📄 Pagination ✨ Extended Info\n\nLookup items by their Trakt, IMDB, TMDB, or TVDB ID. If you use the search url without a `type` it might return multiple items if the `id_type` is not globally unique. Specify the `type` of results by sending a single value or a comma delimited string for multiple types.\n\n| Type | URL |\n|---|---|\n| `trakt` | `/search/trakt/:id` |\n| | `/search/trakt/:id?type=movie` |\n| | `/search/trakt/:id?type=show` |\n| | `/search/trakt/:id?type=episode` |\n| | `/search/trakt/:id?type=person` |\n| `imdb` | `/search/imdb/:id` |\n| `tmdb` | `/search/tmdb/:id` |\n| | `/search/tmdb/:id?type=movie` |\n| | `/search/tmdb/:id?type=show` |\n| | `/search/tmdb/:id?type=episode` |\n| | `/search/tmdb/:id?type=person` |\n| `tvdb` | `/search/tvdb/:id` |\n| | `/search/tvdb/:id?type=show` |\n| | `/search/tvdb/:id?type=episode` |" provider: trakt method: GET path: "/search/{id_type}/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } id_type: { type: "string" enum: ["trakt", "imdb", "tmdb", "tvdb"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movie", "show", "episode", "person", "list"] } } required: ["id", "id_type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }