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

12

Query Parameters

session_id
string
guest_session_id
string

Response

200 - application/json

Account States

The response is of type object.