GET
/
3
/
movie
/
{movie_id}
/
account_states
Account States
curl --request GET \
  --url https://api.themoviedb.org/3/movie/{movie_id}/account_states \
  --header 'Authorization: Bearer <token>'
{
  "favorite": false,
  "id": 558449,
  "rated": false,
  "watchlist": 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

This is a unique identifier for a movie.

Example:

""

Query Parameters

session_id
string

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

guest_session_id
string

It represents a unique identifier for a session that is created for a guest user.

Example:

""

Response

200 - application/json

New Request

favorite
boolean

This indicates whether the user has marked this movie as a favorite. A value of false means the movie is not currently a favorite for the user.

Example:

false

id
number

This is the unique identifier for the movie within the database.

Example:

558449

rated
boolean

This signifies whether the user has rated this movie. A value of false suggests that the user has not provided a rating for the movie.

Example:

false

watchlist
boolean

This shows whether the user has added the movie to their watchlist. A value of false indicates that the movie is not on the user's watchlist.

Example:

false