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": "8500157",
  "item_present": false
}

Authorizations

Authorization
string
header
required

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

Path Parameters

movie_id
integer
required

A unique identifier for a movie

Example:

18

Query Parameters

language
string

The language and region of the content, represented by an ISO 639-1 and ISO 3166-1 code combination (e.g, en-US for English, United States.). Defaults to en-US.

Example:

"en-US"

Response

200 - application/json

Request successful

The response is of type object.