GET
/
3
/
person
/
{person_id}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/person/%7B{person_id}%7D/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 128,
  "profiles": [
    {
      "aspect_ratio": 0.666,
      "file_path": "/vfPQnrMZ87uPjyJYrSkQtqI6c0H.jpg",
      "height": 776,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 517
    }
  ]
}

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

Images Example

The response is of type object.