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

# Details

> This endpoint allows users to retrieve detailed information about a specific keyword in The Movie Database.



## OpenAPI

````yaml api-reference/openapi3.json get /3/keyword/{keyword_id}
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/keyword/{keyword_id}:
    get:
      tags:
        - KEYWORDS
      summary: Details
      description: >-
        This endpoint allows users to retrieve detailed information about a
        specific keyword in The Movie Database.
      operationId: details5
      parameters:
        - $ref: '#/components/parameters/keyword_id'
      responses:
        '200':
          description: details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=25026
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 02 Jan 2025 17:59:16 GMT
            ETag:
              schema:
                type: string
                example: W/"e1566e2e909cdc93162b7353d53a23e5"
            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 e3e94284a800d30d02bd662be67e1bf2.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: IafTiX_8uiL9MX1zOA-QOSMhOVcSGEzZEK9v3lUUr3JiYQ66zVP7jQ==
            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: MISS, STORE
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '25026'
            x-memc-key:
              schema:
                type: string
                example: 0d9289316045e87e7938325aa85f180c
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 14696
                    description: A unique identifier for the keyword.
                  name:
                    type: string
                    example: bloody fight
                    description: >-
                      The name of the keyword, which describes a specific theme
                      or element associated with a movie or TV show.
              examples:
                details:
                  value:
                    id: 14696
                    name: bloody fight
components:
  parameters:
    keyword_id:
      name: keyword_id
      in: path
      required: true
      description: This is the unique identifier for each keyword.
      schema:
        type: string
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````