GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
account_states
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/account_states \
  --header 'Authorization: Bearer <token>'
{
  "id": 3572,
  "results": [
    {
      "episode_number": 1,
      "id": 62085,
      "rated": false
    },
    {
      "episode_number": 2,
      "id": 62086,
      "rated": false
    },
    {
      "episode_number": 3,
      "id": 62087,
      "rated": false
    },
    {
      "episode_number": 4,
      "id": 62088,
      "rated": false
    },
    {
      "episode_number": 5,
      "id": 62089,
      "rated": false
    },
    {
      "episode_number": 6,
      "id": 62090,
      "rated": false
    },
    {
      "episode_number": 7,
      "id": 62091,
      "rated": false
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

season_number
integer
required

This refers to the numerical identifier assigned to a specific season of a TV series.

Example:

""

series_id
integer
required

This refers to a unique identifier assigned to a television series within the database.

Example:

""

Query Parameters

guest_session_id
string

It represents a unique identifier for a session that is created for a guest user.

session_id
string

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

Response

200 - application/json

account states

The response is of type object.