curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/changes \
--header 'Authorization: Bearer <token>'
{
"changes": [
{
"items": [
{
"action": "added",
"id": "675a8ccaa7abcc38d13834a7",
"iso_3166_1": "FR",
"iso_639_1": "fr",
"time": "2024-12-12 07:12:10 UTC",
"value": {
"id": "675a8ccaa7abcc38d13834a6",
"key": "KdXDfD_vUW0",
"name": "GLADIATOR II 67% Bande Annonce VF HD 2024",
"site": "YouTube",
"size": 1080,
"type": "Trailer"
}
}
],
"key": "videos"
}
]
}
This endpoint allows you to get the recent changes for a movie.
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/changes \
--header 'Authorization: Bearer <token>'
{
"changes": [
{
"items": [
{
"action": "added",
"id": "675a8ccaa7abcc38d13834a7",
"iso_3166_1": "FR",
"iso_639_1": "fr",
"time": "2024-12-12 07:12:10 UTC",
"value": {
"id": "675a8ccaa7abcc38d13834a6",
"key": "KdXDfD_vUW0",
"name": "GLADIATOR II 67% Bande Annonce VF HD 2024",
"site": "YouTube",
"size": 1080,
"type": "Trailer"
}
}
],
"key": "videos"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
"date"
"int32"
"date"
Fetch movie changes
The response is of type object
.