TV Seasons
Fetch TV season details, credits, images, videos, translations, and watch providers from the TMDB catalog.
The TVSeasonsAPI provides access to TV season data from TMDB — details, aggregate credits, credits, images, translations, videos, watch providers, and change history.
import { TMDB } from "@lorenzopant/tmdb";
const tmdb = new TMDB("your-api-key");
const season = await tmdb.tv_seasons.details({
series_id: 1396,
season_number: 1,
});Methods
details()— Get the details of a TV season. Supportsappend_to_response.aggregate_credits()— Get the aggregate cast and crew across all episodes of a season.changes()— Get the change history for a TV season by season ID.credits()— Get the cast and crew for a TV season.external_ids()— Get external platform identifiers for a TV season.images()— Get poster images for a TV season.translations()— Get all available translations for a TV season.videos()— Get trailers, teasers, and clips for a TV season.watch_providers()— Get streaming providers available for a TV season.