curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/changes \
--header 'Authorization: Bearer <token>'{
"changes": [
{
"key": "images",
"items": [
{
"id": "640435cf021cee0084710972",
"action": "updated",
"time": "2023-03-05 06:25:19 UTC",
"iso_639_1": "en",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/ouudK6RCNnsbT1CSXrlATXQIQTG.jpg",
"iso_639_1": "en"
}
},
"original_value": {
"poster": {
"file_path": "/ouudK6RCNnsbT1CSXrlATXQIQTG.jpg",
"iso_639_1": "fr"
}
}
},
{
"id": "640435df383df200d90638fa",
"action": "updated",
"time": "2023-03-05 06:25:35 UTC",
"iso_639_1": "en",
"iso_3166_1": "",
"value": {
"backdrop": {
"file_path": "/xQgcyrg7QFyeNXVTpK3hPkPrH5z.jpg",
"iso_639_1": "en"
}
},
"original_value": {
"backdrop": {
"file_path": "/xQgcyrg7QFyeNXVTpK3hPkPrH5z.jpg",
"iso_639_1": "fr"
}
}
},
{
"id": "640472b9e61e6d0086e02342",
"action": "added",
"time": "2023-03-05 10:45:13 UTC",
"iso_639_1": "",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/YC9R1jhQMS4xAf0VhGHrCwDOYw.jpg"
}
}
},
{
"id": "640472c4e61e6d008e4012ab",
"action": "updated",
"time": "2023-03-05 10:45:24 UTC",
"iso_639_1": "bg",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/YC9R1jhQMS4xAf0VhGHrCwDOYw.jpg",
"iso_639_1": "bg"
}
},
"original_value": {
"poster": {
"file_path": "/YC9R1jhQMS4xAf0VhGHrCwDOYw.jpg",
"iso_639_1": null
}
}
}
]
}
]
}This endpoint is used to get the recent changes for a TV show
curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/changes \
--header 'Authorization: Bearer <token>'{
"changes": [
{
"key": "images",
"items": [
{
"id": "640435cf021cee0084710972",
"action": "updated",
"time": "2023-03-05 06:25:19 UTC",
"iso_639_1": "en",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/ouudK6RCNnsbT1CSXrlATXQIQTG.jpg",
"iso_639_1": "en"
}
},
"original_value": {
"poster": {
"file_path": "/ouudK6RCNnsbT1CSXrlATXQIQTG.jpg",
"iso_639_1": "fr"
}
}
},
{
"id": "640435df383df200d90638fa",
"action": "updated",
"time": "2023-03-05 06:25:35 UTC",
"iso_639_1": "en",
"iso_3166_1": "",
"value": {
"backdrop": {
"file_path": "/xQgcyrg7QFyeNXVTpK3hPkPrH5z.jpg",
"iso_639_1": "en"
}
},
"original_value": {
"backdrop": {
"file_path": "/xQgcyrg7QFyeNXVTpK3hPkPrH5z.jpg",
"iso_639_1": "fr"
}
}
},
{
"id": "640472b9e61e6d0086e02342",
"action": "added",
"time": "2023-03-05 10:45:13 UTC",
"iso_639_1": "",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/YC9R1jhQMS4xAf0VhGHrCwDOYw.jpg"
}
}
},
{
"id": "640472c4e61e6d008e4012ab",
"action": "updated",
"time": "2023-03-05 10:45:24 UTC",
"iso_639_1": "bg",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/YC9R1jhQMS4xAf0VhGHrCwDOYw.jpg",
"iso_639_1": "bg"
}
},
"original_value": {
"poster": {
"file_path": "/YC9R1jhQMS4xAf0VhGHrCwDOYw.jpg",
"iso_639_1": null
}
}
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The series ID for tv.
End date of the tv series
Defaults to 1
Start date of the tv series