Skip to main content
GET
/
movie
/
{movie_id}
/
account_states
Fetch account states
curl --request GET \
  --url 'https://api.themoviedb.org/3/movie/{{movie_id}}/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

favorite
boolean
Example:

true

id
number
Example:

1182387

rated
boolean
Example:

false

watchlist
boolean
Example:

true