curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/credits \
--header 'Authorization: Bearer <token>'{
"cast": [
{
"adult": false,
"gender": 2,
"id": 94713,
"known_for_department": "Acting",
"name": "Warren Mitchell",
"original_name": "Warren Mitchell",
"popularity": 25.146,
"profile_path": "/mMFruuo24m0A8LgVXjE6cUDrGFx.jpg",
"character": "Alf Garnett",
"credit_id": "5253853f19c295794020694c",
"order": 0
},
{
"adult": false,
"gender": 1,
"id": 87747,
"known_for_department": "Acting",
"name": "Dandy Nichols",
"original_name": "Dandy Nichols",
"popularity": 14.787,
"profile_path": "/kOF7x205JqOyjwWkgAWzkMtQBcn.jpg",
"character": "Else Garnett",
"credit_id": "5253853e19c29579402068ae",
"order": 1
},
{
"adult": false,
"gender": 1,
"id": 1218303,
"known_for_department": "Acting",
"name": "Una Stubbs",
"original_name": "Una Stubbs",
"popularity": 21.063,
"profile_path": "/bz23ewpBlZNgSwCLqKPaa8ulKfQ.jpg",
"character": "Rita Rawlins",
"credit_id": "5253853f19c29579402068ea",
"order": 2
},
{
"adult": false,
"gender": 2,
"id": 110455,
"known_for_department": "Acting",
"name": "Anthony Booth",
"original_name": "Anthony Booth",
"popularity": 12.127,
"profile_path": "/qKdk7EFxFRkurP56fXmqkQqQlDm.jpg",
"character": "Mike Rawlins",
"credit_id": "5253854019c295794020699c",
"order": 3
}
],
"crew": [
{
"department": "Directing",
"job": "Director",
"credit_id": "5253853d19c29579402067a6",
"adult": false,
"gender": 0,
"id": 1218302,
"known_for_department": "Production",
"name": "Dennis Main Wilson",
"original_name": "Dennis Main Wilson",
"popularity": 0.556,
"profile_path": null
}
],
"guest_stars": [
{
"character": "",
"credit_id": "5253853b19c2957940206734",
"order": 500,
"adult": false,
"gender": 2,
"id": 30119,
"known_for_department": "Acting",
"name": "Alfie Bass",
"original_name": "Alfie Bass",
"popularity": 17.625,
"profile_path": "/1LnDvjwwtiQTrcaHGPDLsF9f3rq.jpg"
},
{
"character": "",
"credit_id": "5253853b19c2957940206776",
"order": 502,
"adult": false,
"gender": 1,
"id": 12658,
"known_for_department": "Acting",
"name": "Patricia Hayes",
"original_name": "Patricia Hayes",
"popularity": 18.165,
"profile_path": "/6XFwNMFX81TJOvY5k5V0rUANQL.jpg"
}
],
"id": 31095
}This endpoint is used to get the credit for a tv episode.
curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/credits \
--header 'Authorization: Bearer <token>'{
"cast": [
{
"adult": false,
"gender": 2,
"id": 94713,
"known_for_department": "Acting",
"name": "Warren Mitchell",
"original_name": "Warren Mitchell",
"popularity": 25.146,
"profile_path": "/mMFruuo24m0A8LgVXjE6cUDrGFx.jpg",
"character": "Alf Garnett",
"credit_id": "5253853f19c295794020694c",
"order": 0
},
{
"adult": false,
"gender": 1,
"id": 87747,
"known_for_department": "Acting",
"name": "Dandy Nichols",
"original_name": "Dandy Nichols",
"popularity": 14.787,
"profile_path": "/kOF7x205JqOyjwWkgAWzkMtQBcn.jpg",
"character": "Else Garnett",
"credit_id": "5253853e19c29579402068ae",
"order": 1
},
{
"adult": false,
"gender": 1,
"id": 1218303,
"known_for_department": "Acting",
"name": "Una Stubbs",
"original_name": "Una Stubbs",
"popularity": 21.063,
"profile_path": "/bz23ewpBlZNgSwCLqKPaa8ulKfQ.jpg",
"character": "Rita Rawlins",
"credit_id": "5253853f19c29579402068ea",
"order": 2
},
{
"adult": false,
"gender": 2,
"id": 110455,
"known_for_department": "Acting",
"name": "Anthony Booth",
"original_name": "Anthony Booth",
"popularity": 12.127,
"profile_path": "/qKdk7EFxFRkurP56fXmqkQqQlDm.jpg",
"character": "Mike Rawlins",
"credit_id": "5253854019c295794020699c",
"order": 3
}
],
"crew": [
{
"department": "Directing",
"job": "Director",
"credit_id": "5253853d19c29579402067a6",
"adult": false,
"gender": 0,
"id": 1218302,
"known_for_department": "Production",
"name": "Dennis Main Wilson",
"original_name": "Dennis Main Wilson",
"popularity": 0.556,
"profile_path": null
}
],
"guest_stars": [
{
"character": "",
"credit_id": "5253853b19c2957940206734",
"order": 500,
"adult": false,
"gender": 2,
"id": 30119,
"known_for_department": "Acting",
"name": "Alfie Bass",
"original_name": "Alfie Bass",
"popularity": 17.625,
"profile_path": "/1LnDvjwwtiQTrcaHGPDLsF9f3rq.jpg"
},
{
"character": "",
"credit_id": "5253853b19c2957940206776",
"order": 502,
"adult": false,
"gender": 1,
"id": 12658,
"known_for_department": "Acting",
"name": "Patricia Hayes",
"original_name": "Patricia Hayes",
"popularity": 18.165,
"profile_path": "/6XFwNMFX81TJOvY5k5V0rUANQL.jpg"
}
],
"id": 31095
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The series ID of the tv
The season number of the tv series
The episode number of tv series
Defaults to en-US
Successful
A collection of objects representing the actors who have appeared in the movie
Show child attributes
A list of objects representing the behind-the-scenes staff who contributed to the production of the movie
Show child attributes
A list of objects representing the start guests
Show child attributes
A unique numerical identifier