🍿 @lorenzopant/tmdb

Changes

Get the change history for a TV season.

Get the change history for a TV season by its internal TMDB season ID. By default, only the last 24 hours are returned.

async changes(params: TVSeasonChangesParams): Promise<Changes>

TMDB Reference: TV Season Changes by ID

Parameters

NameTypeRequiredDescription
season_idnumber | stringUnique TMDB identifier for the season (not the season number).
start_datestringFilter from this date (ISO 8601, e.g. "2024-01-01").
end_datestringFilter up to this date (ISO 8601, e.g. "2024-01-14").
pagenumberPage of results to return.

Returns

Changes

Example

const changes = await tmdb.tv_seasons.changes({ season_id: 3624 });
console.log(changes.changes);

Types

On this page