I built an application capable of saving the user's favorite movie IDs. I want from these IDs to search and assemble the list of movies.
Using this method
https://api.themoviedb.org/3/search/{id}
it returns only one movie.
And it is not possible in the same request to ask for more than one. Example:
https://api.themoviedb.org/3/search/{id1, id2, id3, ...}
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by robbie3999
on June 5, 2023 at 7:03 PM
Hi, the method you give is not valid, perhaps you mean this: https://developer.themoviedb.org/reference/movie-details
Anyway, it is currently not possible to get movie details for more than one movie id at a time. You will have to do a query for each movie id.