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
| Name | Type | Required | Description |
|---|---|---|---|
network_id | number | ✅ | TMDB 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 });