curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/changes \
--header 'Authorization: Bearer <token>'{
"changes": [
{
"key": "images",
"items": [
{
"id": "67748b492efbf3b41d929068",
"action": "added",
"time": "2025-01-01 00:24:41 UTC",
"iso_639_1": "",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/l5FwaNDvTOHLjS2RK4WcVI7AwgK.jpg"
}
}
},
{
"id": "67748b55fbe3722a986199d6",
"action": "updated",
"time": "2025-01-01 00:24:53 UTC",
"iso_639_1": "fr",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/l5FwaNDvTOHLjS2RK4WcVI7AwgK.jpg",
"iso_639_1": "fr"
}
},
"original_value": {
"poster": {
"file_path": "/l5FwaNDvTOHLjS2RK4WcVI7AwgK.jpg",
"iso_639_1": null
}
}
},
{
"id": "67752ce96234c1b46f61903c",
"action": "added",
"time": "2025-01-01 11:54:17 UTC",
"iso_639_1": "",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/oYn2r1ObQnFLgiEh7aDmY353dQo.jpg"
}
}
}
]
},
{
"key": "tagline",
"items": [
{
"id": "67748c4b63f90f8f6692aa0d",
"action": "updated",
"time": "2025-01-01 00:28:59 UTC",
"iso_639_1": "fr",
"iso_3166_1": "FR",
"value": {
"primary": false,
"tagline": "Étrange. Confusion. Chaos."
},
"original_value": {
"primary": false,
"tagline": "Chaos. Confusion. Savon."
}
}
]
}
]
}This endpoint is used to get the recent changes for a movie.
curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/changes \
--header 'Authorization: Bearer <token>'{
"changes": [
{
"key": "images",
"items": [
{
"id": "67748b492efbf3b41d929068",
"action": "added",
"time": "2025-01-01 00:24:41 UTC",
"iso_639_1": "",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/l5FwaNDvTOHLjS2RK4WcVI7AwgK.jpg"
}
}
},
{
"id": "67748b55fbe3722a986199d6",
"action": "updated",
"time": "2025-01-01 00:24:53 UTC",
"iso_639_1": "fr",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/l5FwaNDvTOHLjS2RK4WcVI7AwgK.jpg",
"iso_639_1": "fr"
}
},
"original_value": {
"poster": {
"file_path": "/l5FwaNDvTOHLjS2RK4WcVI7AwgK.jpg",
"iso_639_1": null
}
}
},
{
"id": "67752ce96234c1b46f61903c",
"action": "added",
"time": "2025-01-01 11:54:17 UTC",
"iso_639_1": "",
"iso_3166_1": "",
"value": {
"poster": {
"file_path": "/oYn2r1ObQnFLgiEh7aDmY353dQo.jpg"
}
}
}
]
},
{
"key": "tagline",
"items": [
{
"id": "67748c4b63f90f8f6692aa0d",
"action": "updated",
"time": "2025-01-01 00:28:59 UTC",
"iso_639_1": "fr",
"iso_3166_1": "FR",
"value": {
"primary": false,
"tagline": "Étrange. Confusion. Chaos."
},
"original_value": {
"primary": false,
"tagline": "Chaos. Confusion. Savon."
}
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the movie
The end date of the movie
Defaults to 1
The start date of the movie