curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/season/{season_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": 16.735,
"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": 12.296,
"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": 16.698,
"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": 10.207,
"profile_path": "/qKdk7EFxFRkurP56fXmqkQqQlDm.jpg",
"character": "Mike Rawlins",
"credit_id": "5253854019c295794020699c",
"order": 3
}
],
"crew": [
{
"adult": false,
"gender": 0,
"id": 1218302,
"known_for_department": "Production",
"name": "Dennis Main Wilson",
"original_name": "Dennis Main Wilson",
"popularity": 0.867,
"profile_path": null,
"credit_id": "5253854019c29579402069e6",
"department": "Production",
"job": "Producer"
}
],
"id": 1691
}This endpoint is used to get the credit for a tv season
curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/season/{season_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": 16.735,
"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": 12.296,
"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": 16.698,
"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": 10.207,
"profile_path": "/qKdk7EFxFRkurP56fXmqkQqQlDm.jpg",
"character": "Mike Rawlins",
"credit_id": "5253854019c295794020699c",
"order": 3
}
],
"crew": [
{
"adult": false,
"gender": 0,
"id": 1218302,
"known_for_department": "Production",
"name": "Dennis Main Wilson",
"original_name": "Dennis Main Wilson",
"popularity": 0.867,
"profile_path": null,
"credit_id": "5253854019c29579402069e6",
"department": "Production",
"job": "Producer"
}
],
"id": 1691
}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
Defaults to en-US
Successful