GET
/
3
/
account
/
{account_id}
/
watchlist
/
tv
curl --request GET \
  --url https://api.themoviedb.org/3/account/{account_id}/watchlist/tv \
  --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
integer
required

This refers to a unique identifier assigned to a user account.

Example:

""

Query Parameters

language
string

Specifies the language in which the response should be returned.

Example:

"en-US"

page
integer

Indicates which page of results to return. Default is the first page (1).

Example:

1

session_id
string

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

sort_by
enum<string>

Determines how the results should be sorted. 'created_at.asc' indicates ascending order based on the creation date.

Available options:
created_at.asc,
created_at.desc
Example:

"created_at.asc"

Response

200 - application/json

watchlist tv

The response is of type object.