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
details()— Get the details and items of a list.create()— Create a new list.delete()— Delete a list.add_movie()— Add a movie to a list.remove_movie()— Remove a movie from a list.check_item_status()— Check if a movie is in a list.clear()— Clear all items from a list.