Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Movies
Movie States
This endpoint allows you to check if a movie has been added to favorite, rated, or watchlist in your account.
GET
/
3
/
movie
/
{movie_id}
/
account_states
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/account_states \
--header 'Authorization: Bearer <token>'
{
"favorite": false,
"id": 1035048,
"rated": {
"value": 6
},
"watchlist": false
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Account States
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/account_states \
--header 'Authorization: Bearer <token>'
{
"favorite": false,
"id": 1035048,
"rated": {
"value": 6
},
"watchlist": false
}
Assistant
Responses are generated using AI and may contain mistakes.