Skip to main content
GET
/
tv
/
{series_id}
/
changes
Fetch TV changes
curl --request GET \
  --url 'https://api.themoviedb.org/3/tv/{{series_id}}/changes' \
  --header 'Authorization: Bearer <token>'
{
  "changes": [
    {
      "items": [
        {
          "action": "updated",
          "id": "67714d7f77e2b6d478927d6f",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-29 13:24:15 UTC",
          "value": {
            "season_id": 107971,
            "season_number": 8
          }
        }
      ],
      "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
string
required

Query Parameters

end_date
string
Example:

"date"

page
string
Example:

"1"

start_date
string
Example:

"date"

Response

200 - application/json

Fetch movie changes

changes
object[]
Example:
[
  {
    "items": [
      {
        "action": "updated",
        "id": "67714d7f77e2b6d478927d6f",
        "iso_3166_1": "",
        "iso_639_1": "",
        "time": "2024-12-29 13:24:15 UTC",
        "value": { "season_id": 107971, "season_number": 8 }
      }
    ],
    "key": "season"
  }
]