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
Tagged Images
Get the tagged images for a person.
GET
/
3
/
person
/
{person_id}
/
tagged_images
Copy
curl --request GET \
--url https://api.themoviedb.org/3/person/%7B{person_id}%7D/tagged_images \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 128,
"page": 1,
"results": [],
"total_pages": 0,
"total_results": 0
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Tagged Images
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/person/%7B{person_id}%7D/tagged_images \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 128,
"page": 1,
"results": [],
"total_pages": 0,
"total_results": 0
}
Assistant
Responses are generated using AI and may contain mistakes.