GET
/
3
/
tv
/
{series_id}
/
changes
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/changes \
  --header 'Authorization: Bearer <token>'
{
  "changes": [
    {
      "items": [
        {
          "action": "added",
          "id": "676c28586b01e0e140a9e4e3",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-25 15:44:24 UTC",
          "value": {
            "group": "tones",
            "id": 200234,
            "name": "shocking"
          }
        },
        {
          "action": "added",
          "id": "676c285e7ba3c45440a9e71e",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-25 15:44:30 UTC",
          "value": {
            "group": "tones",
            "id": 325799,
            "name": "disheartening"
          }
        },
        {
          "action": "deleted",
          "id": "676c3aec3187bef8487ec7f9",
          "iso_3166_1": "",
          "iso_639_1": "",
          "original_value": {
            "group": "tones",
            "id": 200234,
            "name": "shocking"
          },
          "time": "2024-12-25 17:03:40 UTC"
        }
      ],
      "key": "plot_keywords"
    },
    {
      "items": [
        {
          "action": "added",
          "id": "676bc75491da026ccb64a0d7",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-25 08:50:28 UTC",
          "value": {
            "title_logo": {
              "file_path": "/bKvyyDSl6rGPlMjADqM0TGpSXoA.png"
            }
          }
        },
        {
          "action": "updated",
          "id": "676bc76291da026ccb64a0e0",
          "iso_3166_1": "",
          "iso_639_1": "pt",
          "original_value": {
            "title_logo": {
              "file_path": "/bKvyyDSl6rGPlMjADqM0TGpSXoA.png",
              "iso_639_1": null
            }
          },
          "time": "2024-12-25 08:50:42 UTC",
          "value": {
            "title_logo": {
              "file_path": "/bKvyyDSl6rGPlMjADqM0TGpSXoA.png",
              "iso_639_1": "pt"
            }
          }
        },
        {
          "action": "added",
          "id": "676bc7d591da026ccb64a0ff",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-25 08:52:37 UTC",
          "value": {
            "title_logo": {
              "file_path": "/hwGCpTocOwrndkzBLEoh4dXpUs2.png"
            }
          }
        },
        {
          "action": "updated",
          "id": "676bc7f516fdd844f07ebfe2",
          "iso_3166_1": "",
          "iso_639_1": "pt",
          "original_value": {
            "title_logo": {
              "file_path": "/hwGCpTocOwrndkzBLEoh4dXpUs2.png",
              "iso_639_1": null
            }
          },
          "time": "2024-12-25 08:53:09 UTC",
          "value": {
            "title_logo": {
              "file_path": "/hwGCpTocOwrndkzBLEoh4dXpUs2.png",
              "iso_639_1": "pt"
            }
          }
        }
      ],
      "key": "images"
    },
    {
      "items": [
        {
          "action": "updated",
          "id": "676c5734f9d936e31493e7f1",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2024-12-25 19:04:20 UTC",
          "value": {
            "season_id": 287516,
            "season_number": 2
          }
        }
      ],
      "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

This represents the series ID. Get it here

Query Parameters

end_date
string

This represents the end date.

Example:

"28-12-2024"

page
string

This represents the page number.

Example:

"1"

start_date
string

This represents the end date.

Example:

"25-12-2024"

Response

200 - application/json

Changes

The response is of type object.