GET
/
3
/
person
/
{person_id}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/person/{person_id}/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 12,
  "profiles": [
    {
      "aspect_ratio": 0.667,
      "file_path": "/fe4mUSp0XotA6Ku4Bs69Q9o2lqU.jpg",
      "height": 3000,
      "iso_639_1": null,
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 2000
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/zzfj8LHhSiRntnyThvOBirEEmII.jpg",
      "height": 3000,
      "iso_639_1": null,
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 2000
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/ynuhSXKgi3DQiTXihVCcOR5jFSN.jpg",
      "height": 3000,
      "iso_639_1": null,
      "vote_average": 1.75,
      "vote_count": 2,
      "width": 2000
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/4wOePXDww8YAKOwhBBCFScpPKCa.jpg",
      "height": 900,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 600
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/13tAX6YZr3F1PGbMrfKo0IE55Cl.jpg",
      "height": 1875,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 1250
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

person_id
integer
required
Example:

12

Response

200 - application/json

Images

The response is of type object.