🍿 @lorenzopant/tmdb

Available Regions

Query the list of regions with watch provider support.

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 available_regions(params?: WatchProviderRegionsParams): Promise<WatchProviderRegionsResponse>

TMDB Reference: Watch Providers Available Regions

Parameters

NameTypeRequiredDescription
languageLanguageLanguage used for localized region names.

Returns

WatchProviderRegionsResponse

Example

const regions = await tmdb.watch_providers.available_regions();

console.log(regions.results[0]?.english_name);
{
	"results": [
		{
			"iso_3166_1": "US",
			"english_name": "United States of America",
			"native_name": "United States"
		}
	]
}

Types

On this page