CREDIT
Details
Endpoints
- AUTHENTICATION
- ACCOUNT
- CERTIFICATIONS
- CHANGES
- COLLECTIONS
- COMPANY
- CONFIGURATION
- CREDIT
- DISCOVER
- FIND
- GENRES
- GUEST SESSIONS
- KEYWORDS
- LISTS
- MOVIE LISTS
- MOVIES
- REVIEWS
- NETWORKS
- PEOPLE LIST
- PEOPLE
- SEARCH
- TRENDING
- TV SERIES LIST
- TV SERIES
- TV SEASONS
- TV EPISODES
- TV EPISODE GROUP
- WATCH PROVIDERS
CREDIT
Details
This endpoint is used get a movie or TV credit details by ID.
GET
/
3
/
credit
/
{credit_id}
curl --request GET \
--url https://api.themoviedb.org/3/credit/{credit_id} \
--header 'Authorization: Bearer <token>'
{
"credit_type": "cast",
"department": "Acting",
"id": "52fe4250c3a36847f80149f3",
"job": "Actor",
"media": {
"adult": false,
"backdrop_path": "/hZkgoQYus5vegHoetLkCJzb17zJ.jpg",
"character": "Narrator",
"genre_ids": [
18
],
"id": 550,
"media_type": "movie",
"original_language": "en",
"original_title": "Fight Club",
"overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.",
"popularity": 115.18,
"poster_path": "/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg",
"release_date": "1999-10-15",
"title": "Fight Club",
"video": false,
"vote_average": 8.4,
"vote_count": 29575
},
"media_type": "movie",
"person": {
"adult": false,
"gender": 2,
"id": 819,
"known_for_department": "Acting",
"media_type": "person",
"name": "Edward Norton",
"original_name": "Edward Norton",
"popularity": 23.946,
"profile_path": "/8nytsqL59SFJTVYVrN72k6qkGgJ.jpg"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Example:
""
Response
200 - application/json
details
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/credit/{credit_id} \
--header 'Authorization: Bearer <token>'
{
"credit_type": "cast",
"department": "Acting",
"id": "52fe4250c3a36847f80149f3",
"job": "Actor",
"media": {
"adult": false,
"backdrop_path": "/hZkgoQYus5vegHoetLkCJzb17zJ.jpg",
"character": "Narrator",
"genre_ids": [
18
],
"id": 550,
"media_type": "movie",
"original_language": "en",
"original_title": "Fight Club",
"overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.",
"popularity": 115.18,
"poster_path": "/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg",
"release_date": "1999-10-15",
"title": "Fight Club",
"video": false,
"vote_average": 8.4,
"vote_count": 29575
},
"media_type": "movie",
"person": {
"adult": false,
"gender": 2,
"id": 819,
"known_for_department": "Acting",
"media_type": "person",
"name": "Edward Norton",
"original_name": "Edward Norton",
"popularity": 23.946,
"profile_path": "/8nytsqL59SFJTVYVrN72k6qkGgJ.jpg"
}
}