🍿 @lorenzopant/tmdb

Alternative Names

Query the alternative names associated with a specific TV network.

This method returns the alternative names associated with a specific TV network.

async alternative_names(params: NetworkBaseParams): Promise<AlternativeNamesResult>

TMDB Reference: Network Alternative Names

Parameters

NameTypeRequiredDescription
network_idnumberTMDB network identifier.

Returns

An AlternativeNamesResult object containing the alternative names of the specified network.

Example

import { TMDB } from "@lorenzopant/tmdb";

const tmdb = new TMDB("your-api-key");
const names = await tmdb.networks.alternative_names({ network_id: 49 });

Types

On this page