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

# Keywords

> This endpoint get keywords associated with a specific movie



## OpenAPI

````yaml get /3/movie/{movie_id}/keywords
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/movie/{movie_id}/keywords:
    parameters:
      - name: movie_id
        in: path
        required: true
        schema:
          type: string
          example: '12'
    get:
      tags:
        - MOVIES
      summary: Keywords
      description: This endpoint get keywords associated with a specific movie
      operationId: keywords
      responses:
        '200':
          description: Keywords
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=7756
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Mon, 30 Dec 2024 10:30:21 GMT
            ETag:
              schema:
                type: string
                example: W/"590866698d7470ef54c593213766d8db"
            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 79a8bda299f9389df1f030913c73199e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 1mDeXwgzQNlpWa4ii0-kBJrEvjHISjHiS-pSVO8rvelsW5imlZImqw==
            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: '14028'
            x-memc-expires:
              schema:
                type: string
                example: '7756'
            x-memc-key:
              schema:
                type: string
                example: ae27f9bb1c0d2d2b61e5b9c3a2043b2b
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 12
                  keywords:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          example: 1357
                        name:
                          type: string
                          example: fish
                    example:
                      - id: 1357
                        name: fish
                      - id: 5656
                        name: sydney, australia
                      - id: 970
                        name: parent child relationship
                      - id: 11477
                        name: anthropomorphism
                      - id: 10026
                        name: harbor
                      - id: 14785
                        name: underwater
                      - id: 15097
                        name: shark
                      - id: 33635
                        name: pelican
                      - id: 33759
                        name: fish tank
                      - id: 33760
                        name: great barrier reef
                      - id: 154896
                        name: sea turtle
                      - id: 156948
                        name: missing child
                      - id: 179430
                        name: aftercreditsstinger
                      - id: 179431
                        name: duringcreditsstinger
                      - id: 180557
                        name: short-term memory loss
                      - id: 180568
                        name: clownfish
                      - id: 180574
                        name: father son reunion
                      - id: 181068
                        name: protective father
                      - id: 325835
                        name: melodramatic
              examples:
                Keywords:
                  value:
                    id: 12
                    keywords:
                      - id: 1357
                        name: fish
                      - id: 5656
                        name: sydney, australia
                      - id: 970
                        name: parent child relationship
                      - id: 11477
                        name: anthropomorphism
                      - id: 10026
                        name: harbor
                      - id: 14785
                        name: underwater
                      - id: 15097
                        name: shark
                      - id: 33635
                        name: pelican
                      - id: 33759
                        name: fish tank
                      - id: 33760
                        name: great barrier reef
                      - id: 154896
                        name: sea turtle
                      - id: 156948
                        name: missing child
                      - id: 179430
                        name: aftercreditsstinger
                      - id: 179431
                        name: duringcreditsstinger
                      - id: 180557
                        name: short-term memory loss
                      - id: 180568
                        name: clownfish
                      - id: 180574
                        name: father son reunion
                      - id: 181068
                        name: protective father
                      - id: 325835
                        name: melodramatic
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````