TV Series
Fetch TV series details, credits, images, videos, ratings, and more from the TMDB catalog.
The TVSeriesAPI provides access to all TV series-related data from TMDB —
from full details and credits to images, videos, and streaming availability.
import { TMDB } from "@lorenzopant/tmdb";
const tmdb = new TMDB("your-api-key");
const show = await tmdb.tvSeries.details({ series_id: 1396 });Methods
details()— Get the top level details of a TV series by ID. Supportsappend_to_response.aggregate_credits()— Get the full cast and crew across all seasons and episodes.alternative_titles()— Get alternative titles for a TV show across different countries and languages.changes()— Get the change history for a TV show (up to 14 days).content_ratings()— Get content ratings per country for a TV show.credits()— Get the latest season cast and crew for a TV show.episode_groups()— Get the episode groups that have been added to a TV show.external_ids()— Get external platform identifiers (IMDb, TVDB, Wikidata, social media).images()— Get backdrops, logos, and posters for a TV show.keywords()— Get the keywords associated with a TV show.latest()— Get the most recently added TV show on TMDB.lists()— Get the lists that a TV series has been added to.recommendations()— Get recommended TV shows based on a series.reviews()— Get user reviews for a TV show.screened_theatrically()— Get episodes that have been screened theatrically.similar()— Get TV shows similar to a given series.translations()— Get all available translations for a TV show.videos()— Get trailers, teasers, and clips for a TV show.watch_providers()— Get streaming, rental, and purchase availability per country.