GET
/
3
/
account
/
{account_id}
/
rated
/
tv
curl --request GET \
  --url https://api.themoviedb.org/3/account/{account_id}/rated/tv \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/mc3rG5M9dFVjMfaCFNfbD5gu2pK.jpg",
      "first_air_date": "2005-02-06",
      "genre_ids": [
        16,
        35
      ],
      "id": 1433,
      "name": "American Dad!",
      "origin_country": [
        "US"
      ],
      "original_language": "en",
      "original_name": "American Dad!",
      "overview": "The series focuses on an eccentric motley crew that is the Smith family and their three housemates: Father, husband, and breadwinner Stan Smith; his better half housewife, Francine Smith; their college-aged daughter, Hayley Smith; and their high-school-aged son, Steve Smith. Outside of the Smith family, there are three additional main characters, including Hayley's boyfriend turned husband, Jeff Fischer; the family's man-in-a-goldfish-body pet, Klaus; and most notably the family's zany alien, Roger, who is \"full of masquerades, brazenness, and shocking antics.\"",
      "popularity": 366.595,
      "poster_path": "/j84ZtVRoxKWTsQUya77um4l8Dqs.jpg",
      "rating": 8.5,
      "vote_average": 6.957,
      "vote_count": 2132
    }
  ],
  "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

unique identifier of an account

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

The response is of type object.