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

# movie List

> This endpoint get the list of official genres for movies.



## OpenAPI

````yaml api-reference/openapi3.json get /3/genre/movie/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/movie/list:
    get:
      tags:
        - GENRES
      summary: movie List
      description: This endpoint get the list of official genres for movies.
      operationId: movieList1
      parameters:
        - $ref: '#/components/parameters/language'
      responses:
        '200':
          description: movie list
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=25725
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 02 Jan 2025 17:14:38 GMT
            ETag:
              schema:
                type: string
                example: W/"98d6f4fb3a0e0c77544a7277f32baebb"
            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 613faec4b883bfe2ebdd8a74d5006f4c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: HCi_xDGSE3bptFh298cP30qVABcYCWpQYH4RXryoI-SVYrbX-fBuhg==
            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: '744'
            x-memc-expires:
              schema:
                type: string
                example: '25725'
            x-memc-key:
              schema:
                type: string
                example: f781971c95c323df5625e30d17cbce76
          content:
            application/json:
              schema:
                type: object
                properties:
                  genres:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          example: 28
                          description: >-
                            A unique numerical identifier assigned to each
                            genre.
                        name:
                          type: string
                          example: Action
                          description: The textual representation or label of the genre.
                    example:
                      - id: 28
                        name: Action
                      - id: 12
                        name: 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: 14
                        name: Fantasy
                      - id: 36
                        name: History
                      - id: 27
                        name: Horror
                      - id: 10402
                        name: Music
                      - id: 9648
                        name: Mystery
                      - id: 10749
                        name: Romance
                      - id: 878
                        name: Science Fiction
                      - id: 10770
                        name: TV Movie
                      - id: 53
                        name: Thriller
                      - id: 10752
                        name: War
                      - id: 37
                        name: Western
                    description: >-
                      This array is the collection or list of categories that
                      classify various types of movies based on their thematic
                      and stylistic elements.
              examples:
                movie list:
                  value:
                    genres:
                      - id: 28
                        name: Action
                      - id: 12
                        name: 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: 14
                        name: Fantasy
                      - id: 36
                        name: History
                      - id: 27
                        name: Horror
                      - id: 10402
                        name: Music
                      - id: 9648
                        name: Mystery
                      - id: 10749
                        name: Romance
                      - id: 878
                        name: Science Fiction
                      - id: 10770
                        name: TV Movie
                      - id: 53
                        name: Thriller
                      - id: 10752
                        name: War
                      - 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

````