🍿 @lorenzopant/tmdb

Tagged Images

Query the paginated tagged images for a person.

Returns images where the person has been tagged, along with the tagged movie or TV media payload.

async tagged_images(params: PersonTaggedImagesParams): Promise<PersonTaggedImages>

TMDB Reference: Person Tagged Images

Parameters

NameTypeRequiredDescription
person_idnumberTMDB person identifier.
pagenumberPage number for paginated image tags.

Returns

A PersonTaggedImages object containing paginated tagged images.

Example

const tagged = await tmdb.people.tagged_images({ person_id: 31, page: 1 });
console.log(tagged.results.length);

On this page