🍿 @lorenzopant/tmdb

Watch Providers

Get streaming providers available for a TV season.

Get the watch providers for a specific TV season. Powered by JustWatch, this returns the streaming services that have the season available in each region.

async watch_providers(params: TVSeasonWatchProvidersParams): Promise<MediaWatchProviders>

TMDB Reference: TV Season Watch Providers

Parameters

NameTypeRequiredDescription
series_idnumberTMDB TV series identifier.
season_numbernumberSeason number within the TV series.
languageLanguageLanguage for localized results. Defaults to en-US.

Returns

MediaWatchProviders

Example

const providers = await tmdb.tv_seasons.watch_providers({
	series_id: 1396,
	season_number: 1,
});

const us = providers.results["US"];
console.log(us?.flatrate); // Streaming providers
console.log(us?.rent); // Rental providers

Types

On this page