Keyboard Shortcuts
Advanced Search
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 August 5, 2023 at 7: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: