GET
/
tv
/
{series_id}
/
account_states
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
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
string
required

Query Parameters

session_id
string
Example:

"7427e7f0d08c503a855b022dc5a2e124577150b8"

guest_session_id
string
Example:

"string"

Response

200 - application/json

Fetch account states

The response is of type object.