🍿 @lorenzopant/tmdb

Movie Lists

Access curated movie lists including popular, top rated, now playing, and upcoming.

The MovieListsAPI provides access to TMDB's curated movie lists. All methods return paginated results and support language and region filtering.

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

const tmdb = new TMDB("your-api-key");

// or standalone
import { MovieListsAPI } from "@lorenzopant/tmdb";
const movieLists = new MovieListsAPI("your-api-key");

Methods

  • now_playing() — Get a list of movies currently in theatres.
  • popular() — Get a list of movies ordered by popularity.
  • top_rated() — Get a list of movies ordered by rating.
  • upcoming() — Get a list of movies being released soon.

On this page