Skip to main content
A common workflow here on TMDB is to search for a movie (or TV show, or person) and then query for the details. Here’s a quick overview of what that flow looks like. First, you are going to issue a query to one of the movie, TV show or person search methods. We’ll use Jack Reacher and the movie method for this example:
Example Search Request
This will return a few fields, the one you want to look at is the results field. This is an array and will contain our standard movie list objects. Here’s an example of the first item:
Example Results Object

Query For Details

With the item above in hand, you can see the id of the movie is 343611. You can use that id to query the movie details method:
Example Details Query
This will return all of the main movie details as outlined in the movie details documentation. I would also suggest taking a read through the append to response document as it outlines how you can make multiple sub requests in one. For example, with videos:
Example Append Request