🍿 @lorenzopant/tmdb

Rated TV Episodes

Get the paginated list of TV episodes rated by an account.

Get the list of individual TV episodes an account has rated, with optional sorting and pagination.

async rated_tv_episodes(params: AccountMediaListParams): Promise<AccountRatedEpisodesResponse>

TMDB Reference: Rated TV Episodes

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<AccountRatedEpisodeItem> containing an array of AccountRatedEpisodeItem objects. Each item includes a rating field with the user's score (0.5–10).

Example

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

const tmdb = new TMDB("your-access-token");
const rated = await tmdb.account.rated_tv_episodes({ account_id: 123 });

console.log(rated.results[0].name); // "Pilot"
console.log(rated.results[0].show_id); // parent TV show ID
console.log(rated.results[0].rating); // 9.5

On this page