GET
/
3
/
account
/
{account_id}
/
rated
/
tv
/
episodes
curl --request GET \
  --url https://api.themoviedb.org/3/account/{account_id}/rated/tv/episodes \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "air_date": "2023-11-22",
      "episode_number": 1,
      "episode_type": "standard",
      "id": 4669401,
      "name": "Red Light, Green Light",
      "overview": "Hundreds of hopefuls in tracksuits set out to cross the finish line during the opening game of \"Red Light, Green Light.\" A cookie challenge causes chaos.",
      "production_code": "",
      "rating": 8,
      "runtime": 57,
      "season_number": 1,
      "show_id": 204082,
      "still_path": "/uzRQDQTxljTFUJefhy1KxN9Fzkw.jpg",
      "vote_average": 7.976,
      "vote_count": 84
    }
  ],
  "total_pages": 1,
  "total_results": 1
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
integer
required

user's account id

Query Parameters

page
integer
default:1

page number to retrieve specific paginated results.

session_id
string

session ID for authentication or tracking purposes

language
string
default:en-US

language based on region

sort_by
enum<string>

Sort the results either in ascending order or descending order

Available options:
created_at.asc,
created_at.desc

Response

200 - application/json

Rated Tv Episodes

The response is of type object.