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

# Movies

> This endpoint fetch movies associated with a certain keyword.



## OpenAPI

````yaml api-reference/openapi3.json get /3/keyword/{keyword_id}/movies
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}/movies:
    get:
      tags:
        - KEYWORDS
      summary: Movies
      description: This endpoint fetch movies associated with a certain keyword.
      operationId: movies
      parameters:
        - $ref: '#/components/parameters/include_adult'
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/keyword_id'
      responses:
        '200':
          description: movie
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=23569
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 02 Jan 2025 21:25:59 GMT
            ETag:
              schema:
                type: string
                example: W/"742d54da44c59203d6153930f10322c9"
            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 38ecebcaa39c8742da2b6336935bb446.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 2zsTGPGXYDmp6QQLQCYY7yW4SMcUzkL_XXbIiPZCGahcSS7obemUGA==
            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: '1958'
            x-memc-expires:
              schema:
                type: string
                example: '23569'
            x-memc-key:
              schema:
                type: string
                example: 9153a77796e5f6ca7842502a81d83792
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 14696
                    description: >-
                      A unique identifier for the keyword or search query in the
                      database.
                  page:
                    type: number
                    example: 1
                    description: The current page number of the results being displayed.
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                          description: >-
                            Boolean value indicating whether the content is
                            meant for adults (true) or suitable for all
                            audiences (false).
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /44Yi72Ut3NchXewQzx814ViE2dy.jpg
                          description: >-
                            The path to a backdrop image associated with the
                            movie, used for displaying a larger background
                            image.
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 28
                          example:
                            - 28
                            - 12
                            - 53
                          description: >-
                            An array of numeric genre identifiers that
                            categorize the movie (e.g., action, drama, horror).
                        id:
                          type: number
                          example: 22832
                          description: A unique identifier for the movie in the database.
                        original_language:
                          type: string
                          example: en
                          description: >-
                            The original language in which the movie was
                            produced.
                        original_title:
                          type: string
                          example: Ninja Assassin
                          description: The title of the movie in its original language.
                        overview:
                          type: string
                          example: >-
                            Ninja Assassin follows Raizo, one of the deadliest
                            assassins in the world. Taken from the streets as a
                            child, he was transformed into a trained killer by
                            the Ozunu Clan, a secret society whose very
                            existence is considered a myth. But haunted by the
                            merciless execution of his friend by the Clan, Raizo
                            breaks free from them and vanishes. Now he waits,
                            preparing to exact his revenge.
                          description: >-
                            A brief summary of the plot or storyline (either
                            movie or TV show).
                        popularity:
                          type: number
                          example: 60.159
                          description: >-
                            A numerical value indicating the popularity of the
                            movie, often based on viewer engagement and
                            interactions.
                        poster_path:
                          type: string
                          nullable: true
                          example: /5twFaR5A1Y9C3KAt6uy6iq332m0.jpg
                          description: >-
                            The path to the movie's poster image, used for
                            displaying a thumbnail.
                        release_date:
                          type: string
                          example: '2009-09-29'
                          description: >-
                            The official release date of the movie (in
                            YYYY-MM-DD format).
                        title:
                          type: string
                          example: Ninja Assassin
                          description: >-
                            The title of the movie in English or the most
                            recognized language.
                        video:
                          type: boolean
                          example: false
                          description: >-
                            Boolean value indicating whether there is a video
                            clip available for the movie (true or false).
                        vote_average:
                          type: number
                          example: 6.7
                          description: >-
                            The average rating (out of 10) that the movie has
                            received from viewers.
                        vote_count:
                          type: number
                          example: 1561
                          description: >-
                            The total number of votes the movie has received,
                            contributing to the vote_average.
                    example:
                      - adult: false
                        backdrop_path: /44Yi72Ut3NchXewQzx814ViE2dy.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 22832
                        original_language: en
                        original_title: Ninja Assassin
                        overview: >-
                          Ninja Assassin follows Raizo, one of the deadliest
                          assassins in the world. Taken from the streets as a
                          child, he was transformed into a trained killer by the
                          Ozunu Clan, a secret society whose very existence is
                          considered a myth. But haunted by the merciless
                          execution of his friend by the Clan, Raizo breaks free
                          from them and vanishes. Now he waits, preparing to
                          exact his revenge.
                        popularity: 60.159
                        poster_path: /5twFaR5A1Y9C3KAt6uy6iq332m0.jpg
                        release_date: '2009-09-29'
                        title: Ninja Assassin
                        video: false
                        vote_average: 6.7
                        vote_count: 1561
                      - adult: false
                        backdrop_path: /9J3HHP3kQ5ZStyirJyWPWtvvrHY.jpg
                        genre_ids:
                          - 878
                          - 27
                          - 53
                        id: 158015
                        original_language: en
                        original_title: The Purge
                        overview: >-
                          Given the country's overcrowded prisons, the U.S.
                          government begins to allow 12-hour periods of time in
                          which all illegal activity is legal. During one of
                          these free-for-alls, a family must protect themselves
                          from a home invasion.
                        popularity: 42.998
                        poster_path: /46X1ei9uf13nkkr0OhWldGyr5Uh.jpg
                        release_date: '2013-05-31'
                        title: The Purge
                        video: false
                        vote_average: 6.3
                        vote_count: 8378
                      - adult: false
                        backdrop_path: /eoIQMUeJDOG41way1pb5TjiPFFf.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 76617
                        original_language: en
                        original_title: Texas Chainsaw 3D
                        overview: "A young woman learns that she has inherited a Texas estate from her deceased grandmother.\_After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansion’s dank cellars."
                        popularity: 40.234
                        poster_path: /qaPvvHP1kKlQaUAXQZQAWitqBOT.jpg
                        release_date: '2013-01-03'
                        title: Texas Chainsaw 3D
                        video: false
                        vote_average: 5.5
                        vote_count: 1674
                      - adult: false
                        backdrop_path: /sclEvlduoGf5io1oLj5UsQLOdKQ.jpg
                        genre_ids:
                          - 18
                          - 28
                          - 36
                        id: 30596
                        original_language: cn
                        original_title: 十月圍城
                        overview: >-
                          In 1905, revolutionist Sun Yat-Sen visits Hong Kong to
                          discuss plans with Tongmenghui members to overthrow
                          the Qing dynasty. But when they find out that
                          assassins have been sent to kill him, they assemble a
                          group of protectors to prevent any attacks.
                        popularity: 12.611
                        poster_path: /hEqqA5pSm62IcJ4YJAuMByme3zr.jpg
                        release_date: '2009-12-18'
                        title: Bodyguards and Assassins
                        video: false
                        vote_average: 6.8
                        vote_count: 364
                      - adult: false
                        backdrop_path: /6ze4mMV25hIaFK2QKeyb5ZgFIP1.jpg
                        genre_ids:
                          - 12
                          - 28
                          - 27
                          - 9648
                          - 53
                        id: 878414
                        original_language: en
                        original_title: The Mountain Stalker
                        overview: >-
                          Deep in the Forest lurks a psychopath who returns 15
                          years after 5 hikers go missing. Mark Unit 121 is a
                          forest ranger is sent to investigate , after 3 kids go
                          missing on the mountain trail,  a bloody trail.
                        popularity: 2.261
                        poster_path: /9vlVyF3iX3CmmXrEwSSJuzYevLF.jpg
                        release_date: '2021-09-26'
                        title: The Mountain Stalker
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /7rjarT5Gj7Ozxw0riyVmAOAp1mU.jpg
                        genre_ids:
                          - 28
                        id: 1168962
                        original_language: en
                        original_title: CCC
                        overview: >-
                          After talking to an AI online, our protagonist, Mayne,
                          is receiving strange phone calls from an unknown
                          person. Soon he will have to face heavy threats, and
                          get engaged into an action packed adventure to save
                          humanity from evil forces.
                        popularity: 2.12
                        poster_path: /7yf3qMHlO0BACnJEFORpVOqIaH9.jpg
                        release_date: '2023-09-02'
                        title: CCC
                        video: false
                        vote_average: 6.2
                        vote_count: 4
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 27
                        id: 227907
                        original_language: en
                        original_title: Truth or Dare
                        overview: >-
                          Six college kids find internet stardom when they make
                          "Truth or Dare" videos with a violent twist. It is all
                          fun and games until their number one fan decides he
                          wants to play by his own rules.
                        popularity: 1.383
                        poster_path: /6EVAvgr4QVUsnWE5Bib7EYYGmaU.jpg
                        release_date: '2013-09-13'
                        title: Truth or Dare
                        video: false
                        vote_average: 6.318
                        vote_count: 22
                      - adult: false
                        backdrop_path: /nIpml7IQL2MtOrPPgd2wRjwg0sT.jpg
                        genre_ids:
                          - 28
                        id: 380104
                        original_language: zh
                        original_title: 拳霸风云
                        overview: >-
                          After reuniting with his love of life, Sha Sha,
                          underground boxer Gao Yuan escapes from the gangster
                          who controls him. Hao Ge kidnaps Sha Sha so Gao Yuan
                          would return to the game.
                        popularity: 1.346
                        poster_path: /HziHfCo9AQ5nuLNm4rmhqvYoCc.jpg
                        release_date: '2015-06-20'
                        title: Bloody Destiny
                        video: false
                        vote_average: 7
                        vote_count: 2
                      - adult: false
                        backdrop_path: /kwpANiyObTPqFLrIVNe2bhph2EE.jpg
                        genre_ids:
                          - 35
                          - 28
                          - 18
                        id: 728503
                        original_language: en
                        original_title: 'Tribe: The Untold Story of the Making of Vice Cops'
                        overview: >-
                          Two brave young men set out to create the greatest
                          film drama of all time. What comes next turns out to
                          be much bigger than they ever expected.
                        popularity: 1.234
                        poster_path: /9VmT16H0Qsswjr8vmjcRMM8l40z.jpg
                        release_date: '2020-02-20'
                        title: 'Tribe: The Untold Story of the Making of Vice Cops'
                        video: false
                        vote_average: 9.5
                        vote_count: 1
                      - adult: false
                        backdrop_path: /7IeztTEv3srZPyN68XFKgJ1UimJ.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 9648
                        id: 1302631
                        original_language: en
                        original_title: Hound
                        overview: ''
                        popularity: 1.096
                        poster_path: /96bJWYmbchLng25xw1tT6lF067N.jpg
                        release_date: '2024-11-20'
                        title: Hound
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /zC3srTR7MZifDeNyv0Ka1ggkj66.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 35
                        id: 1291466
                        original_language: en
                        original_title: Holy Cripes! It’s Pipes Mackenzie!
                        overview: >-
                          Pipes Mackenzie is a disgraced pugilist, who hopes to
                          avenge the brutal death of his grandmother and reclaim
                          his name, by cleaning up the streets of scum with
                          fists blessed by the Lord.
                        popularity: 0.989
                        poster_path: null
                        release_date: '2024-08-01'
                        title: Holy Cripes! It’s Pipes Mackenzie!
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /iBcBxwloIFDMiJpbdDe1rtmFAD2.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 18
                        id: 1117062
                        original_language: en
                        original_title: Head to Head
                        overview: >-
                          On a hot day in the unforgiving desert, two hungry and
                          solitary beasts find themselves in the proximity of a
                          partially devoured carcass. They must go head to head
                          in a bloody and crippling battle to determine who
                          deserves to eat and who must leave.
                        popularity: 0.952
                        poster_path: /fe57HzOxzw7BfArY2AVzq0HytwK.jpg
                        release_date: '2022-05-15'
                        title: Head to Head
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 18
                          - 28
                        id: 1179272
                        original_language: pt
                        original_title: Pakanga
                        overview: ''
                        popularity: 0.925
                        poster_path: /9faiD3nbauXtyt4RvJznXgJC4f3.jpg
                        release_date: '2023-09-15'
                        title: Pakanga
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 99
                        id: 394313
                        original_language: en
                        original_title: Mike V's Greatest Hits
                        overview: >-
                          Professional skateboarder and legendary bad ass, Mike
                          V has been fighting against bullies and injustice his
                          whole life. Mike V grew up in a small town in New
                          Jersey and has been fighting for skateboarding and
                          skateboarders his entire professional career. This
                          video documents Mike's most notorious run-in's,
                          confrontations, and brawls. These are the stories
                          behind the stories. It's all here; the car crashing,
                          elbow smashing, ramp thrashing and security guard
                          bashing that has made Mike V a legend in and out of
                          the skateboard world. This video shows you his
                          legendary aggression when someone or something tries
                          to knock him off. Stand Strong indeed.
                        popularity: 0.912
                        poster_path: /4HTNqM9wC9MHEFNHIyhW7RwoPJ4.jpg
                        release_date: '2003-04-24'
                        title: Mike V's Greatest Hits
                        video: false
                        vote_average: 10
                        vote_count: 1
                      - adult: false
                        backdrop_path: /ysVt38szEjyKcvDrMZOxUuz3Z6d.jpg
                        genre_ids:
                          - 27
                        id: 537445
                        original_language: en
                        original_title: Parts Unknown
                        overview: >-
                          After putting their bodies on the line for countless
                          years, a family of professional wrestlers seek a brand
                          new way to satisfy an impeccable bloodlust.
                        popularity: 0.679
                        poster_path: /5TJb9to2uSXsu9HzbwNdZAHFrTf.jpg
                        release_date: '2018-06-08'
                        title: Parts Unknown
                        video: false
                        vote_average: 4
                        vote_count: 2
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 12
                          - 878
                        id: 1277409
                        original_language: en
                        original_title: 'Ghost Spider: Veins Of The Multiverse'
                        overview: >-
                          After the loss of her best friend, Gwen Stacy is
                          thrust into a world beyond anything she could’ve
                          imagined.
                        popularity: 0.332
                        poster_path: null
                        release_date: '2023-11-04'
                        title: 'Ghost Spider: Veins Of The Multiverse'
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /avAVD6cXug6fMWz556R42equkJE.jpg
                        genre_ids:
                          - 27
                          - 9648
                          - 53
                        id: 799069
                        original_language: en
                        original_title: Craving
                        overview: >-
                          Suzie, a hopeful fashion school graduate seeks
                          inspiration in the city of Paris after moving in with
                          her famous DJ boyfriend. Bored and left alone in an
                          unfamiliar city, Suzie attends a mysterious fashion
                          show, where she soon finds out that there is something
                          sinister going on beneath the designer clothing.
                        popularity: 0.149
                        poster_path: /cmlvC9fNixstQgAWPSZWU7pYPrV.jpg
                        release_date: '2021-06-22'
                        title: Craving
                        video: false
                        vote_average: 0
                        vote_count: 0
                    description: >-
                      This array is collection of movie objects that match a
                      specific keyword.
                  total_pages:
                    type: number
                    example: 1
                    description: The total number of pages available for the query results.
                  total_results:
                    type: number
                    example: 17
                    description: The total number of results found for the query.
              examples:
                movie:
                  value:
                    id: 14696
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /44Yi72Ut3NchXewQzx814ViE2dy.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 22832
                        original_language: en
                        original_title: Ninja Assassin
                        overview: >-
                          Ninja Assassin follows Raizo, one of the deadliest
                          assassins in the world. Taken from the streets as a
                          child, he was transformed into a trained killer by the
                          Ozunu Clan, a secret society whose very existence is
                          considered a myth. But haunted by the merciless
                          execution of his friend by the Clan, Raizo breaks free
                          from them and vanishes. Now he waits, preparing to
                          exact his revenge.
                        popularity: 60.159
                        poster_path: /5twFaR5A1Y9C3KAt6uy6iq332m0.jpg
                        release_date: '2009-09-29'
                        title: Ninja Assassin
                        video: false
                        vote_average: 6.7
                        vote_count: 1561
                      - adult: false
                        backdrop_path: /9J3HHP3kQ5ZStyirJyWPWtvvrHY.jpg
                        genre_ids:
                          - 878
                          - 27
                          - 53
                        id: 158015
                        original_language: en
                        original_title: The Purge
                        overview: >-
                          Given the country's overcrowded prisons, the U.S.
                          government begins to allow 12-hour periods of time in
                          which all illegal activity is legal. During one of
                          these free-for-alls, a family must protect themselves
                          from a home invasion.
                        popularity: 42.998
                        poster_path: /46X1ei9uf13nkkr0OhWldGyr5Uh.jpg
                        release_date: '2013-05-31'
                        title: The Purge
                        video: false
                        vote_average: 6.3
                        vote_count: 8378
                      - adult: false
                        backdrop_path: /eoIQMUeJDOG41way1pb5TjiPFFf.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 76617
                        original_language: en
                        original_title: Texas Chainsaw 3D
                        overview: "A young woman learns that she has inherited a Texas estate from her deceased grandmother.\_After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansion’s dank cellars."
                        popularity: 40.234
                        poster_path: /qaPvvHP1kKlQaUAXQZQAWitqBOT.jpg
                        release_date: '2013-01-03'
                        title: Texas Chainsaw 3D
                        video: false
                        vote_average: 5.5
                        vote_count: 1674
                      - adult: false
                        backdrop_path: /sclEvlduoGf5io1oLj5UsQLOdKQ.jpg
                        genre_ids:
                          - 18
                          - 28
                          - 36
                        id: 30596
                        original_language: cn
                        original_title: 十月圍城
                        overview: >-
                          In 1905, revolutionist Sun Yat-Sen visits Hong Kong to
                          discuss plans with Tongmenghui members to overthrow
                          the Qing dynasty. But when they find out that
                          assassins have been sent to kill him, they assemble a
                          group of protectors to prevent any attacks.
                        popularity: 12.611
                        poster_path: /hEqqA5pSm62IcJ4YJAuMByme3zr.jpg
                        release_date: '2009-12-18'
                        title: Bodyguards and Assassins
                        video: false
                        vote_average: 6.8
                        vote_count: 364
                      - adult: false
                        backdrop_path: /6ze4mMV25hIaFK2QKeyb5ZgFIP1.jpg
                        genre_ids:
                          - 12
                          - 28
                          - 27
                          - 9648
                          - 53
                        id: 878414
                        original_language: en
                        original_title: The Mountain Stalker
                        overview: >-
                          Deep in the Forest lurks a psychopath who returns 15
                          years after 5 hikers go missing. Mark Unit 121 is a
                          forest ranger is sent to investigate , after 3 kids go
                          missing on the mountain trail,  a bloody trail.
                        popularity: 2.261
                        poster_path: /9vlVyF3iX3CmmXrEwSSJuzYevLF.jpg
                        release_date: '2021-09-26'
                        title: The Mountain Stalker
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /7rjarT5Gj7Ozxw0riyVmAOAp1mU.jpg
                        genre_ids:
                          - 28
                        id: 1168962
                        original_language: en
                        original_title: CCC
                        overview: >-
                          After talking to an AI online, our protagonist, Mayne,
                          is receiving strange phone calls from an unknown
                          person. Soon he will have to face heavy threats, and
                          get engaged into an action packed adventure to save
                          humanity from evil forces.
                        popularity: 2.12
                        poster_path: /7yf3qMHlO0BACnJEFORpVOqIaH9.jpg
                        release_date: '2023-09-02'
                        title: CCC
                        video: false
                        vote_average: 6.2
                        vote_count: 4
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 27
                        id: 227907
                        original_language: en
                        original_title: Truth or Dare
                        overview: >-
                          Six college kids find internet stardom when they make
                          "Truth or Dare" videos with a violent twist. It is all
                          fun and games until their number one fan decides he
                          wants to play by his own rules.
                        popularity: 1.383
                        poster_path: /6EVAvgr4QVUsnWE5Bib7EYYGmaU.jpg
                        release_date: '2013-09-13'
                        title: Truth or Dare
                        video: false
                        vote_average: 6.318
                        vote_count: 22
                      - adult: false
                        backdrop_path: /nIpml7IQL2MtOrPPgd2wRjwg0sT.jpg
                        genre_ids:
                          - 28
                        id: 380104
                        original_language: zh
                        original_title: 拳霸风云
                        overview: >-
                          After reuniting with his love of life, Sha Sha,
                          underground boxer Gao Yuan escapes from the gangster
                          who controls him. Hao Ge kidnaps Sha Sha so Gao Yuan
                          would return to the game.
                        popularity: 1.346
                        poster_path: /HziHfCo9AQ5nuLNm4rmhqvYoCc.jpg
                        release_date: '2015-06-20'
                        title: Bloody Destiny
                        video: false
                        vote_average: 7
                        vote_count: 2
                      - adult: false
                        backdrop_path: /kwpANiyObTPqFLrIVNe2bhph2EE.jpg
                        genre_ids:
                          - 35
                          - 28
                          - 18
                        id: 728503
                        original_language: en
                        original_title: 'Tribe: The Untold Story of the Making of Vice Cops'
                        overview: >-
                          Two brave young men set out to create the greatest
                          film drama of all time. What comes next turns out to
                          be much bigger than they ever expected.
                        popularity: 1.234
                        poster_path: /9VmT16H0Qsswjr8vmjcRMM8l40z.jpg
                        release_date: '2020-02-20'
                        title: 'Tribe: The Untold Story of the Making of Vice Cops'
                        video: false
                        vote_average: 9.5
                        vote_count: 1
                      - adult: false
                        backdrop_path: /7IeztTEv3srZPyN68XFKgJ1UimJ.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 9648
                        id: 1302631
                        original_language: en
                        original_title: Hound
                        overview: ''
                        popularity: 1.096
                        poster_path: /96bJWYmbchLng25xw1tT6lF067N.jpg
                        release_date: '2024-11-20'
                        title: Hound
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /zC3srTR7MZifDeNyv0Ka1ggkj66.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 35
                        id: 1291466
                        original_language: en
                        original_title: Holy Cripes! It’s Pipes Mackenzie!
                        overview: >-
                          Pipes Mackenzie is a disgraced pugilist, who hopes to
                          avenge the brutal death of his grandmother and reclaim
                          his name, by cleaning up the streets of scum with
                          fists blessed by the Lord.
                        popularity: 0.989
                        poster_path: null
                        release_date: '2024-08-01'
                        title: Holy Cripes! It’s Pipes Mackenzie!
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /iBcBxwloIFDMiJpbdDe1rtmFAD2.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 18
                        id: 1117062
                        original_language: en
                        original_title: Head to Head
                        overview: >-
                          On a hot day in the unforgiving desert, two hungry and
                          solitary beasts find themselves in the proximity of a
                          partially devoured carcass. They must go head to head
                          in a bloody and crippling battle to determine who
                          deserves to eat and who must leave.
                        popularity: 0.952
                        poster_path: /fe57HzOxzw7BfArY2AVzq0HytwK.jpg
                        release_date: '2022-05-15'
                        title: Head to Head
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 18
                          - 28
                        id: 1179272
                        original_language: pt
                        original_title: Pakanga
                        overview: ''
                        popularity: 0.925
                        poster_path: /9faiD3nbauXtyt4RvJznXgJC4f3.jpg
                        release_date: '2023-09-15'
                        title: Pakanga
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 99
                        id: 394313
                        original_language: en
                        original_title: Mike V's Greatest Hits
                        overview: >-
                          Professional skateboarder and legendary bad ass, Mike
                          V has been fighting against bullies and injustice his
                          whole life. Mike V grew up in a small town in New
                          Jersey and has been fighting for skateboarding and
                          skateboarders his entire professional career. This
                          video documents Mike's most notorious run-in's,
                          confrontations, and brawls. These are the stories
                          behind the stories. It's all here; the car crashing,
                          elbow smashing, ramp thrashing and security guard
                          bashing that has made Mike V a legend in and out of
                          the skateboard world. This video shows you his
                          legendary aggression when someone or something tries
                          to knock him off. Stand Strong indeed.
                        popularity: 0.912
                        poster_path: /4HTNqM9wC9MHEFNHIyhW7RwoPJ4.jpg
                        release_date: '2003-04-24'
                        title: Mike V's Greatest Hits
                        video: false
                        vote_average: 10
                        vote_count: 1
                      - adult: false
                        backdrop_path: /ysVt38szEjyKcvDrMZOxUuz3Z6d.jpg
                        genre_ids:
                          - 27
                        id: 537445
                        original_language: en
                        original_title: Parts Unknown
                        overview: >-
                          After putting their bodies on the line for countless
                          years, a family of professional wrestlers seek a brand
                          new way to satisfy an impeccable bloodlust.
                        popularity: 0.679
                        poster_path: /5TJb9to2uSXsu9HzbwNdZAHFrTf.jpg
                        release_date: '2018-06-08'
                        title: Parts Unknown
                        video: false
                        vote_average: 4
                        vote_count: 2
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 12
                          - 878
                        id: 1277409
                        original_language: en
                        original_title: 'Ghost Spider: Veins Of The Multiverse'
                        overview: >-
                          After the loss of her best friend, Gwen Stacy is
                          thrust into a world beyond anything she could’ve
                          imagined.
                        popularity: 0.332
                        poster_path: null
                        release_date: '2023-11-04'
                        title: 'Ghost Spider: Veins Of The Multiverse'
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /avAVD6cXug6fMWz556R42equkJE.jpg
                        genre_ids:
                          - 27
                          - 9648
                          - 53
                        id: 799069
                        original_language: en
                        original_title: Craving
                        overview: >-
                          Suzie, a hopeful fashion school graduate seeks
                          inspiration in the city of Paris after moving in with
                          her famous DJ boyfriend. Bored and left alone in an
                          unfamiliar city, Suzie attends a mysterious fashion
                          show, where she soon finds out that there is something
                          sinister going on beneath the designer clothing.
                        popularity: 0.149
                        poster_path: /cmlvC9fNixstQgAWPSZWU7pYPrV.jpg
                        release_date: '2021-06-22'
                        title: Craving
                        video: false
                        vote_average: 0
                        vote_count: 0
                    total_pages: 1
                    total_results: 17
      deprecated: true
components:
  parameters:
    include_adult:
      name: include_adult
      in: query
      description: This indicate whether the movie is an adult content.
      schema:
        type: string
        enum:
          - true
          - false
        example: false
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    page:
      name: page
      in: query
      description: >-
        Indicates which page of results to return. Default is the first page
        (1).
      schema:
        type: integer
        example: 1
    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

````