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
}
This endpoint allows you to get the rating, watchlist, and favorite status of an account.
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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
"\"e121864bf4969caf6203ec37c8c86979041c7fcc\""
"string"
fetch account states
The response is of type object
.