Hi, is there any way to filter movies by watch providers? I know we can search which watch providers have the movie by entering the movie_id, but I would like to filter the watch provider when searching for the movie. For example, I would like to search only movies from 2023, with action genre and available on Netflix.
找不到电影或节目?登录并创建它吧。
ticao2 🇧🇷 pt-BR 的回复
于 2024 年 01 月 19 日 7:52上午
Yes, it is possible using Discover.
https://developer.themoviedb.org/reference/discover-movie
You need to inform the filter data:
primary_release_year = 2023 (Your requested year)
watch_region = BR (Brazil in my example)
with_genres = 28 (Action ID)
with_watch_providers = 8 (Netflix)
Find Genre IDs here:
https://developer.themoviedb.org/reference/genre-movie-list
Find the WatchProviders IDs here:
https://developer.themoviedb.org/reference/watch-providers-movie-list
The API Request will look like this in this example: