🍿 @lorenzopant/tmdb

Watch Providers

Get streaming, rental, and purchase availability per country for a movie.

Get the list of streaming, rental, and purchase providers for a movie per country. Powered by JustWatch.

Attribution required. You must attribute the source of this data as JustWatch in any usage. Failure to comply may result in API access being revoked.

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

TMDB Reference: Movie Watch Providers

Parameters

NameTypeRequiredDescription
movie_idnumberTMDB movie identifier.

Returns

MediaWatchProviders

Example

const providers = await tmdb.movies.watch_providers({ movie_id: 550 });

const us = providers.results["US"];
console.log(us?.flatrate); // streaming providers
console.log(us?.rent); // rental providers
console.log(us?.buy); // purchase providers

On this page