> ## 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 search for keywords by their name.



## OpenAPI

````yaml get /3/search/keyword
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/search/keyword:
    get:
      tags:
        - SEARCH
      summary: Keywords
      description: This endpoint search for keywords by their name.
      operationId: keywords1
      parameters:
        - name: query
          required: true
          in: query
          schema:
            type: string
            example: animation
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Keywords
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=8018
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:55:22 GMT
            ETag:
              schema:
                type: string
                example: W/"67afc8429d00abc032b636460b4cc4ce"
            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 f4f3f118ac6f8aab6b0b8776a3481c6e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: LmmAsV8UBAUigkgMZeXC-AlYC8mTmAQEBMITy2nVyST4W1vquiQa-Q==
            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: '14756'
            x-memc-expires:
              schema:
                type: string
                example: '8018'
            x-memc-key:
              schema:
                type: string
                example: 52d00286fbf712550829af62ff9f65f4
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          example: 297442
                        name:
                          type: string
                          example: animation
                    example:
                      - id: 297442
                        name: animation
                      - id: 193521
                        name: part animation
                      - id: 214793
                        name: cutout animation
                      - id: 214794
                        name: papercut animation
                      - id: 161919
                        name: adult animation
                      - id: 286391
                        name: salt animation
                      - id: 257414
                        name: object animation
                      - id: 226430
                        name: re-animation
                      - id: 287990
                        name: ink paint animation
                      - id: 263164
                        name: clay animation
                      - id: 292550
                        name: spanish animation
                      - id: 293710
                        name: wood carve animation
                      - id: 295421
                        name: plasticine animation
                      - id: 295551
                        name: authors animation
                      - id: 193149
                        name: suspended animation
                      - id: 274047
                        name: belgian animation
                      - id: 239174
                        name: silhouette animation
                      - id: 239601
                        name: european animation
                      - id: 239742
                        name: model animation
                      - id: 10159
                        name: computer animation
                  total_pages:
                    type: number
                    example: 4
                  total_results:
                    type: number
                    example: 80
              examples:
                Keywords:
                  value:
                    page: 1
                    results:
                      - id: 297442
                        name: animation
                      - id: 193521
                        name: part animation
                      - id: 214793
                        name: cutout animation
                      - id: 214794
                        name: papercut animation
                      - id: 161919
                        name: adult animation
                      - id: 286391
                        name: salt animation
                      - id: 257414
                        name: object animation
                      - id: 226430
                        name: re-animation
                      - id: 287990
                        name: ink paint animation
                      - id: 263164
                        name: clay animation
                      - id: 292550
                        name: spanish animation
                      - id: 293710
                        name: wood carve animation
                      - id: 295421
                        name: plasticine animation
                      - id: 295551
                        name: authors animation
                      - id: 193149
                        name: suspended animation
                      - id: 274047
                        name: belgian animation
                      - id: 239174
                        name: silhouette animation
                      - id: 239601
                        name: european animation
                      - id: 239742
                        name: model animation
                      - id: 10159
                        name: computer animation
                    total_pages: 4
                    total_results: 80
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````