Keyboard Shortcuts
Advanced Search
Is there any api call for to remove the movie or the tv show from the watchlist?
@melissacskn said: Remove Watchlist Item Is there any api call for to remove the movie or the tv show from the watchlist?
I've never used it. But I think it should be this one. https://developer.themoviedb.org/v4/reference/list-remove-items
Maybe using v3 will also work for TV, even though the page title is Movie, https://developer.themoviedb.org/reference/list-remove-movie
@ticao2 I think @melissacskn is talking about an account watchlist, not a general user list.
If that's the case, you just need to set the watchlist value to false. So to add an item:
watchlist
false
curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": true } '
And then to remove an item:
curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": false } '
@travisbell said: @ticao2 I think @melissacskn is talking about an account watchlist, not a general user list. If that's the case, you just need to set the watchlist value to false. So to add an item: curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": true } ' And then to remove an item: curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": false } '
@travisbell said:
Thank you this is what i was looking forππ»
Can't find a movie or TV show? Login to create it.
Login
Sign Up
Want to rate or add this item to a list?
Not a member?
Sign up and join the community
Reply by ticao2 π§π· pt-BR
on June 24, 2025 at 8:43 AM
I've never used it.
But I think it should be this one.
https://developer.themoviedb.org/v4/reference/list-remove-items
Maybe using v3 will also work for TV, even though the page title is Movie,
https://developer.themoviedb.org/reference/list-remove-movie
Reply by Travis Bell
on June 24, 2025 at 10:16 AM
@ticao2 I think @melissacskn is talking about an account watchlist, not a general user list.
If that's the case, you just need to set the
watchlist
value tofalse
. So to add an item:And then to remove an item:
Reply by melissacskn
on June 24, 2025 at 3:38 PM
Thank you this is what i was looking forππ»