The Movie Database Support

what query we need to give in url ,to get the result of movie we search.

2 replies (on page 1 of 1)

Jump to last post

@SoundaryaSM said:
API Related
what query we need to give in url ,to get the result of movie we search.

In both cases there will be 2 API requests.

The first request, using the name of the artist or the title of the film,
must be made using get / search / person or get / search / movie.

https://developers.themoviedb.org/3/search/search-people
Example
https://api.themoviedb.org/3/search/person?api_key=THE_KEY&language=en-US&query=Tom+Cruise

https://developers.themoviedb.org/3/search/search-movies
Example
https://api.themoviedb.org/3/search/movie?api_key=THE_KEY&language=en-US&query=Fight+Club
This way you will obtain, among other data, the Person ID or the Movie ID.

Obtaining the ID you will make the second Request to obtain the details of the ID.
Tom Cruise: ID 500
Fight Club: ID 550

For People there are a few ways:
get / person / {person_id} / movie_credits
get / person / {person_id} / tv_credits
get / person / {person_id} / combined_credits
https://developers.themoviedb.org/3/people/get-person-combined-credits

Or basic search with the append_to_response feature
get / person / {person_id}
https://developers.themoviedb.org/3/people/get-person-details
Example
https://api.themoviedb.org/3/person/500?api_key=THE_KEY&language=en-US&append_to_response=combined_credits

For Movies it is similar.
get / movie / {movie_id} / credits
https://developers.themoviedb.org/3/movies/get-movie-credits

Or basic search with the append_to_response feature
get / movie / {movie_id}
https://developers.themoviedb.org/3/movies/get-movie-details
Example
https://api.themoviedb.org/3/movie/550?api_key=THE_KEY&language=en-US&append_to_response=credits

Thank u so much .

Can't find a movie or TV show? Login to create it.

Global

s focus the search bar
p open profile menu
esc close an open window
? open keyboard shortcut window

On media pages

b go back (or to parent when applicable)
e go to edit page

On TV season pages

(right arrow) go to next season
(left arrow) go to previous season

On TV episode pages

(right arrow) go to next episode
(left arrow) go to previous episode

On all image pages

a open add image window

On all edit pages

t open translation selector
ctrl+ s submit form

On discussion pages

n create new discussion
w toggle watching status
p toggle public/private
c toggle close/open
a open activity
r reply to discussion
l go to last reply
ctrl+ enter submit your message
(right arrow) next page
(left arrow) previous page

Settings

Want to rate or add this item to a list?

Login