ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
LISTS
Check Item Status
This endpoint checks if an item has already been added to the list.
GET
/
3
/
list
/
{list_id}
/
item_status
Copy
curl --request GET \
--url https://api.themoviedb.org/3/list/%7B{list_id}%7D/item_status \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "977",
"item_present": false
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Check Item Status
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/list/%7B{list_id}%7D/item_status \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "977",
"item_present": false
}
Assistant
Responses are generated using AI and may contain mistakes.