Movie Cast and Crew
Learn and practice how to get a list of movie cast and crew using TMDB API.
We'll cover the following...
In this lesson, we’ll explore two endpoints— the credits and credit details.
Cast and crew
The movie crew includes all the people who were involved in its production. However, the movie cast explicitly includes all the actors appearing in at least one of the movie scenes.
We can get the cast and crew for a movie using TMDB’s credits endpoint. This endpoint takes an integer path parameter movie_id
and returns a list of cast and crew in a single JSON response.
The base URL ...