Skip to main content
GET
/
3
/
person
/
{person_id}
/
tv_credits
TV Credits
curl --request GET \
  --url 'https://api.themoviedb.org/3/person/{{person_id}}/tv_credits' \
  --header 'Authorization: Bearer <token>'
{
  "cast": [],
  "crew": [],
  "id": 128
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

person_id
string
required

Response

200 - application/json

TV Credits

cast
any[]
Example:
[]
crew
any[]
Example:
[]
id
number
Example:

128