GET
/
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": true,
  "id": 1182387,
  "rated": false,
  "watchlist": true
}

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

Query Parameters

session_id
string
Example:

"\"e121864bf4969caf6203ec37c8c86979041c7fcc\""

guest_session_id
string
Example:

"string"

Response

200 - application/json

fetch account states

The response is of type object.