Movies
Fetch movie details, credits, images, videos, release dates, and more from the TMDB catalog.
The MoviesAPI provides access to all movie-related data from TMDB —
from full details and credits to images, videos, and streaming availability.
import { TMDB } from "@lorenzopant/tmdb";
const tmdb = new TMDB("your-api-key");
const movie = await tmdb.movies.details({ movie_id: 550 });Methods
details()— Get the top level details of a movie by ID. Supportsappend_to_response.alternative_titles()— Get alternative titles for a movie across different countries and languages.credits()— Get the cast and crew members for a movie.external_ids()— Get external platform identifiers (IMDb, Facebook, Instagram, Twitter, Wikidata).keywords()— Get the keywords associated with a movie.changes()— Get the change history for a movie (up to 14 days).images()— Get backdrops, logos, and posters for a movie.latest()— Get the most recently added movie on TMDB.recommendations()— Get a list of recommended movies based on a movie.release_dates()— Get release dates and certifications per country.reviews()— Get user reviews for a movie.similar()— Get movies similar to a given movie based on genres and keywords.translations()— Get all available translations for a movie.videos()— Get trailers, teasers, and clips for a movie.watch_providers()— Get streaming, rental, and purchase availability per country.