🍿 @lorenzopant/tmdb

Changes

Get the change history for a TV episode.

Get the change history for a TV episode. By default, only the last 24 hours are returned.

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

TMDB Reference: TV Episode Changes by ID

Parameters

NameTypeRequiredDescription
episode_idnumber | stringUnique TMDB identifier for the episode.

Returns

Changes

Example

const changes = await tmdb.tv_episodes.changes({ episode_id: 63056 });
console.log(changes.changes);

Types

On this page