🍿 @lorenzopant/tmdb

Alternative Names

Query the alternative names associated with a specific company.

This method returns the alternative names associated with a specific company.

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

TMDB Reference: Company Alternative Names

Parameters

NameTypeRequiredDescription
company_idnumberTMDB company identifier.

Returns

A AlternativeNamesResult object containing the alternative names of the specified company.

Example

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

const tmdb = new TMDB("your-api-key");
const company = await tmdb.companies.alternative_names({ company_id: 174 });

Types

On this page