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
| Name | Type | Required | Description |
|---|---|---|---|
season_id | number | string | ✅ | Unique TMDB identifier for the season (not the season number). |
start_date | string | ❌ | Filter from this date (ISO 8601, e.g. "2024-01-01"). |
end_date | string | ❌ | Filter up to this date (ISO 8601, e.g. "2024-01-14"). |
page | number | ❌ | Page of results to return. |
Returns
Example
const changes = await tmdb.tv_seasons.changes({ season_id: 3624 });
console.log(changes.changes);