curl --request GET \
--url https://api.themoviedb.org/3/person/{person_id}/images \
--header 'Authorization: Bearer <token>'{
"id": 550,
"profiles": [
{
"aspect_ratio": 0.667,
"height": 999,
"iso_639_1": null,
"file_path": "/aIecrmmYpqnyCWQArAueqD60qok.jpg",
"vote_average": 0,
"vote_count": 0,
"width": 666
}
]
}This endpoint is used to get the profile images that belong to a person.
curl --request GET \
--url https://api.themoviedb.org/3/person/{person_id}/images \
--header 'Authorization: Bearer <token>'{
"id": 550,
"profiles": [
{
"aspect_ratio": 0.667,
"height": 999,
"iso_639_1": null,
"file_path": "/aIecrmmYpqnyCWQArAueqD60qok.jpg",
"vote_average": 0,
"vote_count": 0,
"width": 666
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of a person