GET
/
account
/
{account_id}
/
rated
/
tv
/
episodes
List rated TV Episodes
curl --request GET \
  --url https://api.themoviedb.org/3/account/%7B{account_id}%7D/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

Query Parameters

language
string

language format of the details you want to get.

Example:

"en-US"

page
string

what page the query belongs

Example:

"1"

sort_by
string

filter the query by ascending or descending order

Example:

"created_at.asc"

session_id
string

filter by the user session ID

Example:

"string"

Response

200 - application/json

Rated TV Episodes

The response is of type object.