🍿 @lorenzopant/tmdb

Watchlist TV

Get the paginated list of TV shows in an account's watchlist.

Get the list of TV shows an account has added to their watchlist, with optional sorting and pagination.

async watchlist_tv(params: AccountMediaListParams): Promise<AccountTVListResponse>

TMDB Reference: Watchlist TV

Parameters

NameTypeRequiredDescription
account_idnumberThe TMDB account ID.
session_idstringSession ID for v3 session-based authentication.
languageLanguageLanguage for localized results. Defaults to en-US.
sort_byAccountSortBySort order: "created_at.asc" or "created_at.desc".
pagenumberPage number to return.

Returns

A PaginatedResponse<AccountTVItem> containing an array of AccountTVItem objects.

Example

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

const tmdb = new TMDB("your-access-token");
const watchlist = await tmdb.account.watchlist_tv({
	account_id: 123,
	sort_by: "created_at.asc",
});

console.log(watchlist.results[0].name);

On this page