cURL
curl --request GET \ --url 'https://api.themoviedb.org/3/person/{{person_id}}/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 } ] }
This endpoint gets the profile images that belong to a person.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Images Example
128
Show child attributes
0.666
"/vfPQnrMZ87uPjyJYrSkQtqI6c0H.jpg"
776
0
517
[ { "aspect_ratio": 0.666, "file_path": "/vfPQnrMZ87uPjyJYrSkQtqI6c0H.jpg", "height": 776, "iso_639_1": null, "vote_average": 0, "vote_count": 0, "width": 517 }]