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

# Details

> This endpoint get information about a specific keyword



## OpenAPI

````yaml get /3/keyword/{keyword_id}
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/keyword/{keyword_id}:
    parameters:
      - name: keyword_id
        in: path
        required: true
        schema:
          type: integer
          example: 456
    get:
      tags:
        - KEYWORDS
      summary: Details
      description: This endpoint get information about a specific keyword
      operationId: details5
      responses:
        '200':
          description: Details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=26768
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sat, 28 Dec 2024 10:38:52 GMT
            ETag:
              schema:
                type: string
                example: W/"4cfee8e5b1891a59b7812c33faaeddfc"
            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 2c75ace4dd204c0629bda3cfca0f640c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: titcFKza7SJip8-loZv1QciFlbzH7qKdHjWy_aoZo7aGaqjkaFZo2A==
            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: MISS, STORE
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '26768'
            x-memc-key:
              schema:
                type: string
                example: d39609f93308dbce51ec5655b7e8416f
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 456
                  name:
                    type: string
                    example: mother
              examples:
                Details:
                  value:
                    id: 456
                    name: mother
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````