GET
/
3
/
tv
/
{series_id}
/
changes
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/changes \
  --header 'Authorization: Bearer <token>'
{
  "changes": [
    {
      "items": [
        {
          "action": "updated",
          "id": "6773d55797aa8e4e2c127de8",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-31 11:28:23 UTC",
          "value": {
            "season_id": 423560,
            "season_number": 21
          }
        }
      ],
      "key": "season"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
integer
required

a uniques identifier for a tv serie

Query Parameters

end_date
string
start_date
string
page
integer
default:1

Response

200 - application/json

Changes

The response is of type object.