🍿 @lorenzopant/tmdb

Images

Query the logos associated with a specific TV network.

This method returns the logo images associated with a specific TV network.

async images(params: NetworkBaseParams): Promise<NetworkImages>

TMDB Reference: Network Images

Parameters

NameTypeRequiredDescription
network_idnumberTMDB network identifier.

Returns

A NetworkImages object containing the logos of the specified network.

Example

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

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

Types

On this page