curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/account_states \
--header 'Authorization: Bearer <token>'
{
"favorite": false,
"id": 202250,
"rated": {
"value": 7
},
"watchlist": false
}
This endpoint allows you to get the rating, watchlist, and favorite status.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/account_states \
--header 'Authorization: Bearer <token>'
{
"favorite": false,
"id": 202250,
"rated": {
"value": 7
},
"watchlist": false
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
"7427e7f0d08c503a855b022dc5a2e124577150b8"
"string"
Fetch account states
The response is of type object
.