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