Find Movies by Genre
Search for movies within a specific genre to find your next watch based on the type of movie you are in the mood for.
Ratings, cast & episode guides
Look up any movie or TV show for ratings from IMDB, Rotten Tomatoes, and Metacritic, plus cast, director, plot, awards, and box office. Browse episode guides with per-episode ratings and full cast lists. Great for recommendations, research, and entertainment queries.
Search movies and TV shows by name. Returns a list of results with title, year, IMDB ID, type, and poster image.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "movie-tv-search",
"skill": "search",
"input": {
"query": "Inception"
}
}' \
https://api.toolrouter.com/v1/tools/callGet full details for a movie or TV show including ratings from IMDB, Rotten Tomatoes, and Metacritic, plus cast, director, plot, awards, and box office data.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "movie-tv-search",
"skill": "get_details",
"input": {
"title": "Inception"
}
}' \
https://api.toolrouter.com/v1/tools/callGet the episode list for a specific season of a TV show. Returns episode titles, air dates, and IMDB ratings for each episode.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "movie-tv-search",
"skill": "get_episodes",
"input": {
"title": "Breaking Bad",
"season": 1
}
}' \
https://api.toolrouter.com/v1/tools/callGet the full cast of a TV show with actor names and character names.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "movie-tv-search",
"skill": "tv_show_cast",
"input": {
"query": "Breaking Bad"
}
}' \
https://api.toolrouter.com/v1/tools/callGet detailed episodes with ratings and summaries for a TV show, grouped by season.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "movie-tv-search",
"skill": "tv_episodes_detailed",
"input": {
"query": "Game of Thrones"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"movie-tv-search","skill":"search","input":{}}' \
https://api.toolrouter.com/v1/tools/callSearch for movies within a specific genre to find your next watch based on the type of movie you are in the mood for.
Find movies and shows available on specific streaming services to make the most of your subscriptions.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Start with `search` to get matching titles and IMDB IDs, then use `get_details` for the exact one you want. You can also filter search by movie, series, or year.
`get_details` returns ratings from IMDB, Rotten Tomatoes, and Metacritic, plus cast, director, plot, awards, box office, and total seasons when the title is a series.
Yes. Use `get_episodes` for one season at a time, or `tv_episodes_detailed` to get every season in one pass with ratings and summaries.
Yes. The `search` tool accepts `movie`, `series`, or `any`, and you can narrow results by year when you already know the release date.