GET
/
3
/
tv
/
episode
/
{episode_id}
/
changes
curl --request GET \
  --url https://api.themoviedb.org/3/tv/episode/{episode_id}/changes \
  --header 'Authorization: Bearer <token>'
{
  "changes": [
    {
      "items": [
        {
          "action": "updated",
          "id": "678f26a72f2aa5c158aaab93",
          "iso_3166_1": "",
          "iso_639_1": "wa",
          "original_value": {
            "backdrop": {
              "file_path": "/fmo7pOmLThRpUEKuMXnnpy6g6DU.jpg",
              "iso_639_1": "xx"
            }
          },
          "time": "2025-01-21 04:46:31 UTC",
          "value": {
            "backdrop": {
              "file_path": "/fmo7pOmLThRpUEKuMXnnpy6g6DU.jpg",
              "iso_639_1": "wa"
            }
          }
        },
        {
          "action": "updated",
          "id": "678f26b2e93bd071355b2d34",
          "iso_3166_1": "",
          "iso_639_1": "bg",
          "original_value": {
            "backdrop": {
              "file_path": "/2muYbFIIJcGhbgWzjQfPytqkpPF.jpg",
              "iso_639_1": null
            }
          },
          "time": "2025-01-21 04:46:42 UTC",
          "value": {
            "backdrop": {
              "file_path": "/2muYbFIIJcGhbgWzjQfPytqkpPF.jpg",
              "iso_639_1": "bg"
            }
          }
        },
        {
          "action": "deleted",
          "id": "678fe922f87f4119e6aabdc1",
          "iso_3166_1": "",
          "iso_639_1": "de",
          "original_value": {
            "backdrop": {
              "file_path": "/weFt9EZtM7tt4A4uhzle5PPAige.jpg"
            }
          },
          "time": "2025-01-21 18:36:18 UTC"
        },
        {
          "action": "updated",
          "id": "678fe92d437589f3865b40bb",
          "iso_3166_1": "",
          "iso_639_1": "xx",
          "original_value": {
            "backdrop": {
              "file_path": "/2muYbFIIJcGhbgWzjQfPytqkpPF.jpg",
              "iso_639_1": "bg"
            }
          },
          "time": "2025-01-21 18:36:29 UTC",
          "value": {
            "backdrop": {
              "file_path": "/2muYbFIIJcGhbgWzjQfPytqkpPF.jpg",
              "iso_639_1": "xx"
            }
          }
        },
        {
          "action": "updated",
          "id": "678fe9329418bcfbadf092bc",
          "iso_3166_1": "",
          "iso_639_1": "xx",
          "original_value": {
            "backdrop": {
              "file_path": "/fmo7pOmLThRpUEKuMXnnpy6g6DU.jpg",
              "iso_639_1": "wa"
            }
          },
          "time": "2025-01-21 18:36:34 UTC",
          "value": {
            "backdrop": {
              "file_path": "/fmo7pOmLThRpUEKuMXnnpy6g6DU.jpg",
              "iso_639_1": "xx"
            }
          }
        }
      ],
      "key": "images"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

episode_id
integer
required
Example:

5475279

Response

200 - application/json

Changes

The response is of type object.