GET
/
4
/
list
/
{list_id}
/
item_status
curl --request GET \
  --url https://api.themoviedb.org/4/list/{list_id}/item_status \
  --header 'Authorization: Bearer <token>'
{
  "id": 223,
  "media_id": 408,
  "media_type": "movie",
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

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 custom list

Example:

8510518

Query Parameters

media_id
integer
required

The ID of the media item

Example:

76203

media_type
enum<string>
required

The type of media (e.g., movie)

Available options:
movie,
tv

Response

200 - application/json

Item status

The response is of type object.