🍿 @lorenzopant/tmdb

Details

Query the details of a specific TV network.

async details(params: NetworkBaseParams): Promise<Network>

TMDB Reference: Network Details

Parameters

NameTypeRequiredDescription
network_idnumberTMDB network identifier.

Returns

A Network object containing the details of the specified network.

Example

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

const tmdb = new TMDB("your-api-key");
const network = await tmdb.networks.details({ network_id: 49 }); // HBO

Types

On this page