Keyboard Shortcuts
გაფართოებული ძებნა
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
Can't find a movie or TV show? Login to create it.
ავტორიზაცია
რეგისტრაცია
გსურთ შეაფასოთ ან დაამატოთ ეს ელემენტი სიაში?
არა წევრი?
დარეგისტრირდით და შეუერთდით საზოგადოებას
Reply by robbie3999
on აგვისტო 5, 2023 at 7:06 PM
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: