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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

movie_id
string
required

This represents the movie ID. Get it here

Response

200 - application/json

Account States

The response is of type object.