The Movie Database Support

Hi, couple of questions!

How can I get a list of like the top 10 media someone is known for?

Also and this is more important to me right now, how do I get all the credits of a person? By all I mean their Acting, Writing, Producing, Crew e.t.c credits. The API only has Movie and TV credits

Thanks!

4 replies (on page 1 of 1)

Jump to last post

@Outis99 said:
People API - Known For and Credits
Hi, couple of questions!
How can I get a list of like the top 10 media someone is known for?

Searching by the name of the person you get only the 3 movies with the highest rating. known_for
https://developers.themoviedb.org/3/search/search-people
For example Tom Cruise.
https://api.themoviedb.org/3/search/person?api_key=THE_KEY&language=en-US&query=Tom+Cruise

Also and this is more important to me right now, how do I get all the credits of a person?
By all I mean their Acting, Writing, Producing, Crew e.t.c credits. The API only has Movie and TV credits

Searching with the person's ID you get the credits in 2 different ways.

1 - Using the &append_to_response=combined_credits feature
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

2 - Requesting credits only
https://developers.themoviedb.org/3/people/get-person-combined-credits
Example
https://api.themoviedb.org/3/person/500/combined_credits?api_key=THE_KEY&language=en-US

@ticao2 said:

Searching by the name of the person you get only the 3 movies with the highest rating. known_for
https://developers.themoviedb.org/3/search/search-people
For example Tom Cruise.
https://api.themoviedb.org/3/search/person?api_key=THE_KEY&language=en-US&query=Tom+Cruise

So I guess that's the best we got right now. What I am doing right now is just getting the combined credits and sorting by popularity and displaying the top 10, you get some weird results some times but it's better than just top 3.

Searching with the person's ID you get the credits in 2 different ways.

1 - Using the &append_to_response=combined_credits feature
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

2 - Requesting credits only
https://developers.themoviedb.org/3/people/get-person-combined-credits
Example
https://api.themoviedb.org/3/person/500/combined_credits?api_key=THE_KEY&language=en-US

This only gets credits for acting in Movies and TV Shows, for example if I do a combined credits call for Vince Gilligan who has acted and written and produced shows, I only get the shows he has acted in. How do I get the shows he was a crew member for or ones he produced?

@Outis99 said:
This only gets credits for acting in Movies and TV Shows,
for example if I do a combined credits call for Vince Gilligan who has acted and written and produced shows, I only get the shows he has acted in.
How do I get the shows he was a crew member for or ones he produced?

Something is wrong.
In the example I gave you receive the cast and crew data.

known_for_department    "Writing"
name    "Vince Gilligan"
place_of_birth  "Richmond, Virginia, USA"
popularity  29.257
profile_path    "/uFh3OrBvkwKSU3N5y0XnXOhqBJz.jpg"
combined_credits    
cast    […]
crew    […]

See Vince Gilligan's last 2 acting credits and first 2 crew credits.

  • character "Self"
  • character "Self - Guest"
  • job "Director"
  • job "Director"

https://api.themoviedb.org/3/person/66633?api_key=THE_KEY&language=en-US&append_to_response=combined_credits

11  
adult   false
backdrop_path   "/eujU3vpBvZNOExepuL3ezTN9N5W.jpg"
genre_ids   
0   99
id  72757
origin_country  
0   "US"
original_language   "en"
original_name   "The Nineties"
overview    "Hit rewind and explore the most iconic moments and influential people of The Nineties, the decade that gave us the Internet, DVDs, and other cultural and political milestones."
popularity  3.451
poster_path "/c342XIOS93CIB5uafzOUDGIVqwe.jpg"
first_air_date  "2017-07-09"
name    "The Nineties"
vote_average    7.8
vote_count  11
character   "Self"
credit_id   "6290ccfbcddbbc0e1910f0e4"
episode_count   1
media_type  "tv"
12  
adult   false
backdrop_path   null
genre_ids   
0   10767
id  65664
origin_country  
0   "US"
original_language   "en"
original_name   "Talking Saul"
overview    "AMC's live after-show that serves as a platform for discussion for AMC’s series, Better Call Saul. Hosted by super-fan Chris Hardwick, the half-hour talk show will feature series cast, producers, celebrity fans and more reacting to and discussing the twists and turns of Better Call Saul and taking questions and comments from viewers."
popularity  11.791
poster_path null
first_air_date  "2016-02-15"
name    "Talking Saul"
vote_average    7.5
vote_count  2
character   "Self - Guest"
credit_id   "62f372e8db72c00091a4c73d"
episode_count   1
media_type  "tv"
crew    
0   
adult   false
backdrop_path   "/uLXK1LQM28XovWHPao3ViTeggXA.jpg"
genre_ids   
0   80
1   18
2   53
3   28
id  559969
original_language   "en"
original_title  "El Camino: A Breaking Bad Movie"
overview    "In the wake of his dramatic escape from captivity, Jesse Pinkman must come to terms with his past in order to forge some kind of future."
popularity  46.083
poster_path "/ePXuKdXZuJx8hHMNr2yM4jY2L7Z.jpg"
release_date    "2019-10-11"
title   "El Camino: A Breaking Bad Movie"
video   false
vote_average    6.914
vote_count  3906
credit_id   "5cd0552a0e0a2627aa016405"
department  "Directing"
job "Director"
media_type  "movie"
1   
adult   false
backdrop_path   null
genre_ids   []
id  1014368
original_language   "es"
original_title  "Breaking Bad"
overview    ""
popularity  10.543
poster_path "/1TEdepLwE6TFDeff3UXjkjCWACo.jpg"
release_date    ""
title   "Breaking Bad"
video   true
vote_average    0
vote_count  0
credit_id   "630060061da7a6007db05308"
department  "Directing"
job "Director"
media_type  "movie"
2   

Ah, you are correct, I was using the moviedb-promise npm module and it seems to handle the personCombinedCredits call incorrectly, thanks

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

Want to rate or add this item to a list?

Login