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