🍿 @lorenzopant/tmdb

Screened Theatrically

Get episodes of a TV show that have been screened theatrically.

Get the seasons and episodes of a TV show that have been screened theatrically.

async screened_theatrically(params: TVBaseParam): Promise<TVScreenedTheatrically>

TMDB Reference: TV Series Screened Theatrically

Parameters

NameTypeRequiredDescription
series_idnumberTMDB TV series identifier.

Returns

TVScreenedTheatrically

Example

const { results } = await tmdb.tvSeries.screened_theatrically({ series_id: 1396 });
console.log(results.map((e) => `S${e.season_number}E${e.episode_number}`));

On this page