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

# Keywords

> This endpoint fetches a list of keywords associated with a specified movie



## OpenAPI

````yaml api-reference/openapi3.json get /3/movie/{movie_id}/keywords
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/movie/{movie_id}/keywords:
    get:
      tags:
        - MOVIES
      summary: Keywords
      description: >-
        This endpoint fetches a list of keywords associated with a specified
        movie
      operationId: keywords
      parameters:
        - $ref: '#/components/parameters/movie_id'
      responses:
        '200':
          description: keywords
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=18697
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 23:15:20 GMT
            ETag:
              schema:
                type: string
                example: W/"a5f8c993dee24f642d84074fae28fec5"
            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 c35f767218cbd1125d801b52fa785c8c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: qPIzXPb1re4JdDjrRR4CR4wFB-F5maWZuaeSFHofEXTvjoQWIsj5PA==
            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: '7999'
            x-memc-expires:
              schema:
                type: string
                example: '18697'
            x-memc-key:
              schema:
                type: string
                example: 8136eba8d45562579dde9aebc9af8091
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 558449
                  keywords:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          example: 6917
                        name:
                          type: string
                          example: epic
                    example:
                      - id: 6917
                        name: epic
                      - id: 1394
                        name: gladiator
                      - id: 1405
                        name: roman empire
                      - id: 5049
                        name: ancient rome
                      - id: 9663
                        name: sequel
                      - id: 307212
                        name: evil tyrant
                      - id: 317728
                        name: sword and sandal
                      - id: 320529
                        name: sword fighting
                      - id: 321763
                        name: second part
              examples:
                keywords:
                  value:
                    id: 558449
                    keywords:
                      - id: 6917
                        name: epic
                      - id: 1394
                        name: gladiator
                      - id: 1405
                        name: roman empire
                      - id: 5049
                        name: ancient rome
                      - id: 9663
                        name: sequel
                      - id: 307212
                        name: evil tyrant
                      - id: 317728
                        name: sword and sandal
                      - id: 320529
                        name: sword fighting
                      - id: 321763
                        name: second part
components:
  parameters:
    movie_id:
      name: movie_id
      in: path
      required: true
      description: This is a unique identifier for a movie.
      schema:
        type: integer
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````