GET
/
3
/
account
/
{account_id}
/
favorite
/
tv
curl --request GET \
  --url https://api.themoviedb.org/3/account/{account_id}/favorite/tv \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/fQsIJQxE1D0Y0NpWSKwo489y5px.jpg",
      "first_air_date": "2023-11-22",
      "genre_ids": [
        10764
      ],
      "id": 204082,
      "name": "Squid Game: The Challenge",
      "origin_country": [
        "GB"
      ],
      "original_language": "en",
      "original_name": "Squid Game: The Challenge",
      "overview": "In this reality competition show inspired by \"Squid Game,\" 456 players put their skills to the ultimate test for a life-changing $4.56 million prize.",
      "popularity": 1656.181,
      "poster_path": "/y85L9DWoaM2MYNg1p8QRywxXJsa.jpg",
      "vote_average": 6.5,
      "vote_count": 369
    }
  ],
  "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

language
string
default:en-US

langaugae based on region

page
integer
default:1

page number to retrieve specific paginated results.

session_id
string

session ID for authentication or tracking purposes

sort_by
string

Sort the results either in ascending order or descending order

Response

200 - application/json

Favorite TV

The response is of type object.