GET
/
3
/
list
/
{list_id}
/
item_status
curl --request GET \
  --url https://api.themoviedb.org/3/list/{list_id}/item_status \
  --header 'Authorization: Bearer <token>'
{
  "id": "8504997",
  "item_present": false
}

Authorizations

Authorization
string
header
required

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

Query Parameters

language
string

Specifies the language in which the response should be returned.

Example:

"en-US"

list_id
number
required

This is the unique identifier of the list been created

Example:

""

movie_id
string

This is the unique identifier of a movie.

Response

200 - application/json

check item status

The response is of type object.