Keyboard Shortcuts
Zaawansowane wyszukiwanie
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
Nie możesz znaleźć filmu lub serialu? Zaloguj się, aby go utworzyć.
Zaloguj
Zarejestruj się
Want to rate or add this item to a list?
Not a member?
Zarejestruj się i dołącz do społeczności
Odpowiedź użytkownika robbie3999
5 sierpnia 2023 o godz. 7:06PM
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: