Aggregate Credits
Get the aggregate cast and crew across all episodes of a TV season.
Get the aggregate credits for a TV season — the full cast and crew across every episode.
async aggregate_credits(params: TVSeasonAggregateCreditsParams): Promise<TVSeasonAggregateCredits>TMDB Reference: TV Season Aggregate Credits
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
series_id | number | ✅ | TMDB TV series identifier. |
season_number | number | ✅ | Season number within the TV series. |
language | Language | ❌ | Language for localized results. Defaults to en-US. |
Returns
Example
const { cast, crew } = await tmdb.tv_seasons.aggregate_credits({
series_id: 1396,
season_number: 1,
});
const lead = cast.find((m) => m.order === 0);
console.log(lead?.name, lead?.total_episode_count);