search_imdb
Search for movies on IMDb using titles, genres, ratings, release years, languages, and other filters to find specific films that match your criteria.
Instructions
Search for movies on IMDb. First 5 results are returned. Args: original_title: The original title of the movie to search for. Searches the whole word. original_title_autocomplete: The autocomplete title of the movie to search for. Searches the partial word. primary_title: The primary title of the movie to search for. Searches the whole word. primary_title_autocomplete: The autocomplete primary title of the movie to search for. Searches the partial word. type: The type of the movie to search for. Get all possible types with get_types(). genre: The genre of the movie to search for. Get all possible genres with get_genres(). genres: The genres of the movie to search for. List of Genres. Get all possible genres with get_genres(). is_adult: Whether to include adult movies in the search results. average_rating_from: The minimum average rating of the movie to search for. average_rating_to: The maximum average rating of the movie to search for. num_votes_from: The minimum number of votes of the movie to search for. num_votes_to: The maximum number of votes of the movie to search for. start_year_from: The minimum start year of the movie to search for. start_year_to: The maximum start year of the movie to search for. countries_of_origin: The countries of origin of the movie to search for. In ISO 3166-1 alpha-2 format list of strings. Get all possible countries with get_countries(). spoken_languages: The spoken languages of the movie to search for. In ISO 639-1 format list of strings. Get all possible languages with get_languages(). sort_order: The order of the search results. Possible values: "ASC", "DESC". sort_field: The field to sort the search results by. Possible values: "id", "averageRating", "numVotes", "startYear". Returns: JSON object containing the first 5 search results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| original_title | No | ||
| original_title_autocomplete | No | ||
| primary_title | No | ||
| primary_title_autocomplete | No | ||
| type | No | ||
| genre | No | ||
| genres | No | ||
| is_adult | No | ||
| average_rating_from | No | ||
| average_rating_to | No | ||
| num_votes_from | No | ||
| num_votes_to | No | ||
| start_year_from | No | ||
| start_year_to | No | ||
| countries_of_origin | No | ||
| spoken_languages | No | ||
| sort_order | No | ||
| sort_field | No |