🍿 @lorenzopant/tmdb

TV Providers

Query the list of supported TV 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 tv_providers(params?: WatchProviderListParams): Promise<WatchProviderListResponse>

TMDB Reference: Watch Provider TV List

Parameters

NameTypeRequiredDescription
languageLanguageLanguage used for localized provider names.

Returns

WatchProviderListResponse

Example

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

console.log(providers.results[0]?.provider_name);
{
	"results": [
		{
			"provider_id": 350,
			"provider_name": "Apple TV+",
			"logo_path": "/2E03IAZsX4ZaUqM7tXlctEPMGWS.jpg",
			"display_priority": 2,
			"display_priorities": {
				"US": 2,
				"GB": 4
			}
		}
	]
}

Types

On this page