Skip to main content
GET
/
account
/
{account_id}
/
rated
/
tv
/
episodes
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": [],
  "total_pages": 0,
  "total_results": 0
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
string
required

The ID of the account to retrieve.

Query Parameters

language
string

Defaults to en-US

page
integer

Defaults to 1

session_id
string

The session ID for user authentication.

sort_by
string

Defaults to created_at.asc

Response

200 - application/json;charset=utf-8

Successful

page
integer

Indicates the current page number

results
array

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