> ## Documentation Index
> Fetch the complete documentation index at: https://sirjosh.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Watchlist TV

> This endpoint get a list of TV shows added to a users watchlist.



## OpenAPI

````yaml api-reference/openapi3.json get /3/account/{account_id}/watchlist/tv
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/account/{account_id}/watchlist/tv:
    get:
      tags:
        - ACCOUNT
      summary: Watchlist TV
      description: This endpoint get a list of TV shows added to a users watchlist.
      operationId: watchlistTv
      parameters:
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/session_id'
        - $ref: '#/components/parameters/sort_by'
        - $ref: '#/components/parameters/account_id'
      responses:
        '200':
          description: watchlist tv
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=0
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Mon, 16 Dec 2024 15:50:08 GMT
            ETag:
              schema:
                type: string
                example: W/"5b333525ff117973180331432dc740b8"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 e3e94284a800d30d02bd662be67e1bf2.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: DDrfvrvgFI75PlLQzV9Fx8UMKM5qGnx9tpZ3mzX2tFZL9_dSuP68Rg==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: MISS
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '0'
            x-memc-key:
              schema:
                type: string
                example: 98b049b8ddc84fdfc0c43b7d419f0abe
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                    description: >-
                      Indicates the current page number of the results being
                      returned.
                  results:
                    type: array
                    items: {}
                    example: []
                    description: >-
                      This represents a collection of movie objects returned by
                      the API that provides information about various films. It
                      returns an emtpy array if no movie in it.
                  total_pages:
                    type: number
                    example: 0
                    description: >-
                      An integer representing the total number of pages
                      available in the results set.
                  total_results:
                    type: number
                    example: 0
                    description: >-
                      An integer indicating the total number of results returned
                      by the query.
              examples:
                watchlist tv:
                  value:
                    page: 1
                    results: []
                    total_pages: 0
                    total_results: 0
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    page:
      name: page
      in: query
      description: >-
        Indicates which page of results to return. Default is the first page
        (1).
      schema:
        type: integer
        example: 1
    session_id:
      name: session_id
      in: query
      description: >-
        A token that represents a logged-in user's session after they have
        authenticated with their TMDB account.
      schema:
        type: string
        example: ''
    sort_by:
      name: sort_by
      in: query
      description: >-
        Determines how the results should be sorted. 'created_at.asc' indicates
        ascending order based on the creation date.
      schema:
        type: string
        enum:
          - created_at.asc
          - created_at.desc
        example: created_at.asc
    account_id:
      name: account_id
      in: path
      required: true
      description: This refers to a unique identifier assigned to a user account.
      schema:
        type: integer
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````