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
| Name | Type | Required | Description |
|---|---|---|---|
series_id | number | ✅ | TMDB TV series identifier. |
season_number | number | ✅ | Season number within the TV series. |
language | Language | ❌ | Language for localized results. Defaults to en-US. |
Returns
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