Get movie recommendations
get_movie_recommendationsFind movies recommended for a given movie ID based on co-viewing data—titles that users who liked this also liked. Uses personalization for thematically relevant suggestions.
Instructions
Get movies TMDB recommends for the given movie id, based on co-viewing/personalization data (what users who liked this also liked) — usually the more thematically relevant list. Prefer this over get_similar as the default choice; get_similar matches on shared genres/keywords, a blunter heuristic that can surface tonally unrelated titles. Get the id from search_movies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | TMDB numeric id. | |
| page | No | 1-based page number for pagination (TMDB returns up to 20 results per page, max 500). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | Yes | ||
| results | Yes | ||
| total_pages | Yes | ||
| total_results | Yes |