Skip to main content
GET
/
guest_session
/
{guest_session_id}
/
rated
/
tv
/
episodes
Rated TV Episodes
curl --request GET \
  --url https://api.themoviedb.org/3/guest_session/{guest_session_id}/rated/tv/episodes \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "air_date": "2011-04-17",
      "episode_number": 1,
      "id": 63056,
      "name": "Winter Is Coming",
      "overview": "Jon Arryn, the Hand of the King, is dead. King Robert Baratheon plans to ask his oldest friend, Eddard Stark, to take Jon's place. Across the sea, Viserys Targaryen plans to wed his sister to a nomadic warlord in exchange for an army.",
      "production_code": "101",
      "runtime": 62,
      "season_number": 1,
      "show_id": 1399,
      "still_path": "/9hGF3WUkBf7cSjMg0cdMDHJkByd.jpg",
      "vote_average": 7.843,
      "vote_count": 286,
      "rating": 8.5
    }
  ],
  "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

guest_session_id
string
required

The ID of the guest session to retrieve.

Query Parameters

language
string

Defaults to US

page
integer

Defaults to 1

sort_by
string

Defaults to created_at.asc

Response

200 - application/json

Successful

page
integer

Indicates the current page number

results
object[]

Contains the list of data or items

total_pages
integer

Specifies the total number of pages available

total_results
integer

Represents the total number of items or records in a dataset