🍿 @lorenzopant/tmdb

People

Retrieve person details, credits, images, translations, and external IDs from TMDB.

The PeopleAPI provides access to person-specific TMDB resources such as top-level details, credits, images, translations, and tagged images.

import { TMDB } from "@lorenzopant/tmdb";

const tmdb = new TMDB("your-api-key");
const person = await tmdb.people.details({ person_id: 31 });

For curated person lists, use tmdb.people_lists. For global person changes, use tmdb.changes.people_list().

Methods

  • details() — Get the top-level details of a person by ID. Supports append_to_response.
  • changes() — Get the change history for a person.
  • combined_credits() — Get movie and TV cast/crew credits in one response.
  • external_ids() — Get external platform identifiers for a person.
  • images() — Get profile images for a person.
  • latest() — Get the most recently added person on TMDB.
  • movie_credits() — Get movie cast and crew credits for a person.
  • tagged_images() — Get paginated tagged images for a person.
  • translations() — Get the translated names and biographies available for a person.
  • tv_credits() — Get TV cast and crew credits for a person.

On this page