ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
PEOPLE
Images
This endpoint gets the profile images that belong to a person.
GET
/
3
/
person
/
{person_id}
/
images
Copy
curl --request GET \
--url https://api.themoviedb.org/3/person/%7B{person_id}%7D/images \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Images Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/person/%7B{person_id}%7D/images \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.