Skip to main content
GET
/
3
/
person
/
{person_id}
/
images
Images
curl --request GET \
  --url 'https://api.themoviedb.org/3/person/{{person_id}}/images'
{
  "id": 63429,
  "profiles": [
    {
      "aspect_ratio": 0.667,
      "file_path": "/oTpZ0Ek4qoI8U0tRIViUhgfB05b.jpg",
      "height": 750,
      "iso_639_1": null,
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 500
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/7BiDLC1xZ44VbyDLELpaNkmsp3Z.jpg",
      "height": 660,
      "iso_639_1": null,
      "vote_average": 3.334,
      "vote_count": 3,
      "width": 440
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/p2km6QNG7S2Epp9ljfbEUyYugV1.jpg",
      "height": 960,
      "iso_639_1": null,
      "vote_average": 2.542,
      "vote_count": 4,
      "width": 640
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/bKp9Yozr7jir6xThbagixx2pyy7.jpg",
      "height": 900,
      "iso_639_1": null,
      "vote_average": 0.958,
      "vote_count": 4,
      "width": 600
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/tz0l89HtOfXxRJnBvJ8hfBmQ9yc.jpg",
      "height": 600,
      "iso_639_1": null,
      "vote_average": 0.958,
      "vote_count": 4,
      "width": 400
    },
    {
      "aspect_ratio": 0.667,
      "file_path": "/8hJHvwdhKvOfzW6Vo5S2W6Qy8mE.jpg",
      "height": 946,
      "iso_639_1": null,
      "vote_average": 0.166,
      "vote_count": 1,
      "width": 631
    }
  ]
}

Path Parameters

person_id
string
required

Response

200 - application/json

Images

id
number
Example:

63429

profiles
object[]
Example:
[
  {
    "aspect_ratio": 0.667,
    "file_path": "/oTpZ0Ek4qoI8U0tRIViUhgfB05b.jpg",
    "height": 750,
    "iso_639_1": null,
    "vote_average": 3.334,
    "vote_count": 1,
    "width": 500
  },
  {
    "aspect_ratio": 0.667,
    "file_path": "/7BiDLC1xZ44VbyDLELpaNkmsp3Z.jpg",
    "height": 660,
    "iso_639_1": null,
    "vote_average": 3.334,
    "vote_count": 3,
    "width": 440
  },
  {
    "aspect_ratio": 0.667,
    "file_path": "/p2km6QNG7S2Epp9ljfbEUyYugV1.jpg",
    "height": 960,
    "iso_639_1": null,
    "vote_average": 2.542,
    "vote_count": 4,
    "width": 640
  },
  {
    "aspect_ratio": 0.667,
    "file_path": "/bKp9Yozr7jir6xThbagixx2pyy7.jpg",
    "height": 900,
    "iso_639_1": null,
    "vote_average": 0.958,
    "vote_count": 4,
    "width": 600
  },
  {
    "aspect_ratio": 0.667,
    "file_path": "/tz0l89HtOfXxRJnBvJ8hfBmQ9yc.jpg",
    "height": 600,
    "iso_639_1": null,
    "vote_average": 0.958,
    "vote_count": 4,
    "width": 400
  },
  {
    "aspect_ratio": 0.667,
    "file_path": "/8hJHvwdhKvOfzW6Vo5S2W6Qy8mE.jpg",
    "height": 946,
    "iso_639_1": null,
    "vote_average": 0.166,
    "vote_count": 1,
    "width": 631
  }
]