GET
/
3
/
list
/
{list_id}
/
item_status
curl --request GET \
  --url https://api.themoviedb.org/3/list/%7B{list_id}%7D/item_status \
  --header 'Authorization: Bearer <token>'
{
  "id": "8500209",
  "item_present": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

list_id
string
required

This represents the list ID. Get it here

Query Parameters

movie_id
string

This represents the movie Id. Get it here

Example:

"1241982"

Response

200 - application/json

Check Item Status

The response is of type object.