> ## 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.

# TV List

> This endpoint get the list of official genres for TV shows.



## OpenAPI

````yaml api-reference/openapi3.json get /3/genre/tv/list
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/genre/tv/list:
    get:
      tags:
        - GENRES
      summary: TV List
      description: This endpoint get the list of official genres for TV shows.
      operationId: tvList
      parameters:
        - $ref: '#/components/parameters/language'
      responses:
        '200':
          description: tv list
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=15733
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 02 Jan 2025 17:16:13 GMT
            ETag:
              schema:
                type: string
                example: W/"c9414e40a9e909888e1e74fd911cf7d1"
            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 ffa4b37ccdc94a8c62bf6b6414725210.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 2ifJrSckIr5cZqTblyFNe23liGsUncoaU5lr3q9TwiOM5aoWTHohVA==
            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: HIT
            x-memc-age:
              schema:
                type: string
                example: '12057'
            x-memc-expires:
              schema:
                type: string
                example: '15733'
            x-memc-key:
              schema:
                type: string
                example: 802dfd0c0b218bb30b1dbe3917b34e76
          content:
            application/json:
              schema:
                type: object
                properties:
                  genres:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          example: 10759
                          description: >-
                            A unique numerical identifier assigned to each
                            genre.
                        name:
                          type: string
                          example: Action & Adventure
                          description: The textual representation or label of the genre.
                    example:
                      - id: 10759
                        name: Action & Adventure
                      - id: 16
                        name: Animation
                      - id: 35
                        name: Comedy
                      - id: 80
                        name: Crime
                      - id: 99
                        name: Documentary
                      - id: 18
                        name: Drama
                      - id: 10751
                        name: Family
                      - id: 10762
                        name: Kids
                      - id: 9648
                        name: Mystery
                      - id: 10763
                        name: News
                      - id: 10764
                        name: Reality
                      - id: 10765
                        name: Sci-Fi & Fantasy
                      - id: 10766
                        name: Soap
                      - id: 10767
                        name: Talk
                      - id: 10768
                        name: War & Politics
                      - id: 37
                        name: Western
                    description: >-
                      This array is the collection or list of categories that
                      classify various types of TV shows based on their thematic
                      and stylistic elements.
              examples:
                tv list:
                  value:
                    genres:
                      - id: 10759
                        name: Action & Adventure
                      - id: 16
                        name: Animation
                      - id: 35
                        name: Comedy
                      - id: 80
                        name: Crime
                      - id: 99
                        name: Documentary
                      - id: 18
                        name: Drama
                      - id: 10751
                        name: Family
                      - id: 10762
                        name: Kids
                      - id: 9648
                        name: Mystery
                      - id: 10763
                        name: News
                      - id: 10764
                        name: Reality
                      - id: 10765
                        name: Sci-Fi & Fantasy
                      - id: 10766
                        name: Soap
                      - id: 10767
                        name: Talk
                      - id: 10768
                        name: War & Politics
                      - id: 37
                        name: Western
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````