🍿 @lorenzopant/tmdb

Lists

Create and manage custom movie lists on TMDB (v3).

The ListsAPI allows you to create, manage, and query custom movie lists on TMDB. All mutation methods (create, delete, add_movie, remove_movie, clear) require a valid v3 session_id.

This is the v3 Lists API. For the v4 Lists API, use tmdb.v4.lists.
import { TMDB } from "@lorenzopant/tmdb";

const tmdb = new TMDB("your-api-key");
tmdb.lists; // access methods

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

Methods

On this page