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

# Movies

> This endpoint get the list of official genres for movies



## OpenAPI

````yaml get /3/genre/movie/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/movie/list:
    get:
      tags:
        - GENRES
      summary: Movies
      description: This endpoint get the list of official genres for movies
      operationId: movies2
      parameters:
        - name: language
          in: query
          schema:
            type: string
            default: en
      responses:
        '200':
          description: Movies
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=24367
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 08 Jan 2025 02:37:06 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 8db1ee4e3ce665297e547b943a1b3122.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: l3ZKVmiaPTK61rIupqLSSliH9uilmatvQRagianJTdRVlHkCp2UV8A==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '1722'
            x-memc-expires:
              schema:
                type: string
                example: '24367'
            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
                        name:
                          type: string
                          example: Action
                    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
              examples:
                Movies:
                  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:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````