🍿 @lorenzopant/tmdb

External IDs

Get external platform identifiers for a movie.

Get the external IDs for a movie. Supported platforms are IMDb, Facebook, Instagram, Twitter, and Wikidata.

async external_ids(params: MovieExternalIDsParams): Promise<MovieExternalIDs>

TMDB Reference: Movie External IDs

Parameters

NameTypeRequiredDescription
movie_idnumberTMDB movie identifier.

Returns

MovieExternalIDs

Example

const ids = await tmdb.movies.external_ids({ movie_id: 550 });
console.log(ids.imdb_id); // "tt0137523"

On this page