Skip to main content
GET
/
person
/
{person_id}
/
tagged_images
Tagged Images
curl --request GET \
  --url https://api.themoviedb.org/3/person/{person_id}/tagged_images \
  --header 'Authorization: Bearer <token>'
{
  "id": 550,
  "page": 1,
  "results": [],
  "total_pages": 0,
  "total_results": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

person_id
integer
required

The ID of the person

Query Parameters

page
string

Defaults to 1

Response

200 - application/json

Successful

id
integer

A unique identifier

page
integer

Indicates the current page number

results
array

Contains the list of data or items

total_pages
integer

Specifies the total number of pages available

total_results
integer

Represents the total number of items or records in a dataset