🍿 @lorenzopant/tmdb

TV Episodes

Fetch TV episode details, credits, images, videos, and translations from the TMDB catalog.

The TVEpisodesAPI provides access to TV episode data from TMDB — details, credits, images, translations, and videos.

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

const tmdb = new TMDB("your-api-key");
const episode = await tmdb.tv_episodes.details({
	series_id: 1396,
	season_number: 1,
	episode_number: 1,
});

Methods

  • details() — Get the details of a TV episode by series, season, and episode number. Supports append_to_response.
  • changes() — Get the change history for a TV episode.
  • credits() — Get the cast, crew, and guest stars for a TV episode.
  • external_ids() — Get external platform identifiers for a TV episode.
  • images() — Get still images for a TV episode.
  • translations() — Get all available translations for a TV episode.
  • videos() — Get trailers, teasers, and clips for a TV episode.

On this page