Skip to main content
POST
/
list
/
{list_id}
/
remove_item
Remove Movie
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": 550
}
'
{
  "status_code": 13,
  "status_message": "The item/record was deleted successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

list_id
integer
required

The ID of the list

Query Parameters

session_id
string
required

The session ID for user authentication

Body

application/json

The request body containing the media ID to be added to the list.

media_id
integer
required

The ID of the media to be added.

Response

200 - application/json

Successful

status_code
integer

Indicates success

status_message
string

Indicates that the action was success