GET
/
3
/
tv
/
{series_id}
/
account_states
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/account_states \
  --header 'Authorization: Bearer <token>'
{
  "favorite": false,
  "id": 122,
  "rated": false,
  "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
integer
required

a uniques identifier for a tv serie

Query Parameters

session_id
string
guest_session_id
string

Response

200 - application/json

Account states

The response is of type object.