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
MOVIES
Account States
This endpoint gets the rating, watchlist and favourite status of an account.
GET
/
3
/
movie
/
{movie_id}
/
account_states
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/account_states \
--header 'Authorization: Bearer <token>'
Copy
{
"favorite": false,
"id": 200,
"rated": false,
"watchlist": false
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Account States Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/account_states \
--header 'Authorization: Bearer <token>'
Copy
{
"favorite": false,
"id": 200,
"rated": false,
"watchlist": false
}
Assistant
Responses are generated using AI and may contain mistakes.