🍿 @lorenzopant/tmdb

Details

Query the details of a specific company.

async details(params: CompanyDetailsParams): Promise<Company>

TMDB Reference: Company Details

Parameters

NameTypeRequiredDescription
company_idnumberTMDB company identifier.

Returns

A Company object containing the details of the specified company.

Example

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

const tmdb = new TMDB("your-api-key");
const company = await tmdb.companies.details({ company_id: 174 }); // Warner Bros. Pictures

Types

On this page