🍿 @lorenzopant/tmdb

Movie Providers

Query the list of supported movie watch providers.

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 movie_providers(params?: WatchProviderListParams): Promise<WatchProviderListResponse>

TMDB Reference: Watch Provider Movie List

Parameters

NameTypeRequiredDescription
languageLanguageLanguage used for localized provider names.

Returns

WatchProviderListResponse

Example

const providers = await tmdb.watch_providers.movie_providers();

console.log(providers.results[0]?.provider_name);
{
	"results": [
		{
			"provider_id": 8,
			"provider_name": "Netflix",
			"logo_path": "/t2yyOv40HZeVlLjYsCsPHnWLk4W.jpg",
			"display_priority": 8,
			"display_priorities": {
				"US": 8,
				"IT": 10
			}
		}
	]
}

Types

On this page