cURL
curl --request POST \ --url 'https://api.themoviedb.org/3/list/{{list_id}}/remove_item' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "media_id": 558449 } '
{ "status_code": 13, "status_message": "The item/record was deleted successfully.", "success": true }
This endpoint allows you to remove a movie from your list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents the list ID. Get it here
This represents your session id. Get it here
"a30ca4b889498c1eaeba29bf38bcd439b75f15f7"
This represents the media ID. Get it here
558449
Remove
13
"The item/record was deleted successfully."
true