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
| Name | Type | Required | Description |
|---|---|---|---|
person_id | number | ✅ | TMDB person identifier. |
page | number | ❌ | Page 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);