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

# TV

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



## OpenAPI

````yaml get /3/genre/tv/list
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/genre/tv/list:
    get:
      tags:
        - GENRES
      summary: TV
      description: This endpoint get the list of official genres for TV shows
      operationId: tv2
      parameters:
        - name: language
          in: query
          schema:
            type: string
            default: en
      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=23400
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 27 Dec 2024 11:19:25 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 ce8f85a4dd9437febbc40094aa7d575a.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: j4FaRDNNKY3CjI2sQ-WMMVB1E-J1SbfJhpbaNhoK6ddVBmFQtcoe6A==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LHR50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '2077'
            x-memc-expires:
              schema:
                type: string
                example: '23400'
            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
                        name:
                          type: string
                          example: Action & Adventure
                    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
              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:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````