curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/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"
}
]
}
This endpoint allows you to get the recent changes for a TV show.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/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"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch movie changes
The response is of type object
.