GET
/
3
/
tv
/
season
/
{season_id}
/
changes
Changes
curl --request GET \
  --url https://api.themoviedb.org/3/tv/season/{season_id}/changes \
  --header 'Authorization: Bearer <token>'
{
  "changes": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

season_number
integer
required

This refers to the numerical identifier assigned to a specific season of a TV series.

Example:

""

Query Parameters

start_date
string

It specifies what date you want the results to start from

page
integer

Indicates which page of results to return. Default is the first page (1).

Example:

1

end_date
string

This indicates the end of the date range for the data you want to retrieve

Response

200 - application/json

changes

The response is of type object.