Billentyűparancsok
Részletes kereső
Is there a way to retrieve all actors in a specific movie? I am struggling to figure it out with the API documentation.
Hi @zgall1, you will want to use the movie credits endpoint. It returns two arrays, cast and crew. For actors you would want the cast array.
You can call it by itself, or you can append it to the movie details with append_to_response:
https://api.themoviedb.org/3/movie/{movie_id}/credits https://api.themoviedb.org/3/movie/{movie_id}?append_to_response=credits
https://api.themoviedb.org/3/movie/{movie_id}/credits
https://api.themoviedb.org/3/movie/{movie_id}?append_to_response=credits
Nem találsz egy filmet vagy egy sorozatot? Jelentkezz be és hozd létre.
Bejelentkezés
Regisztrálás
Want to rate or add this item to a list?
Még nem tag?
Regisztráljon és csatlakozzon a közösséghez
robbie3999 válaszolt
Beküldve: 2023. augusztus 5. 19:06
Hi @zgall1, you will want to use the movie credits endpoint. It returns two arrays, cast and crew. For actors you would want the cast array.
You can call it by itself, or you can append it to the movie details with append_to_response: