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

# Movie_id

> This endpoint is used to get a movie_id



## OpenAPI

````yaml api-reference/openapi3.json get /3/search/movie
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/search/movie:
    get:
      tags:
        - CREDIT
      summary: Movie_id
      description: This endpoint is used to get a movie_id
      operationId: movieId
      parameters:
        - $ref: '#/components/parameters/region'
        - $ref: '#/components/parameters/include_adult'
        - $ref: '#/components/parameters/language'
        - name: primary_release_year
          in: query
          description: >-
            This refers to the year when the film was primarily released in
            theaters.
          schema:
            type: string
        - $ref: '#/components/parameters/page'
        - name: year
          in: query
          description: >-
            This generally refers to the broader or official year associated
            with the film.
          schema:
            type: string
      responses:
        '200':
          description: movie_id
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=295
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Mon, 30 Dec 2024 16:36:40 GMT
            ETag:
              schema:
                type: string
                example: W/"a4f203b425843d786b767d453efd9959"
            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 ffa4b37ccdc94a8c62bf6b6414725210.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: HFXHXNgFk6SAKsDoxlSUPjqc-4BQDHDZS38UmvexnQPr42fd1h4Brg==
            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: '21636'
            x-memc-expires:
              schema:
                type: string
                example: '295'
            x-memc-key:
              schema:
                type: string
                example: d181ba52979f1aaa139230d0234dc2be
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                    description: The current page number being viewed in the results.
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                          description: >-
                            A boolean indicating whether the movie is intended
                            for adults
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /hZkgoQYus5vegHoetLkCJzb17zJ.jpg
                          description: >-
                            The URL path to the movie's backdrop image (used for
                            background displays).
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 18
                          example:
                            - 18
                          description: >-
                            An array of genre IDs that represent the types of
                            genres the movie falls under.
                        id:
                          type: number
                          example: 550
                          description: A unique identifier for the movie.
                        original_language:
                          type: string
                          example: en
                          description: >-
                            The original language in which the movie was
                            produced.
                        original_title:
                          type: string
                          example: Fight Club
                          description: The original title of the movie as it was released
                        overview:
                          type: string
                          example: >-
                            A ticking-time-bomb insomniac and a slippery soap
                            salesman channel primal male aggression into a
                            shocking new form of therapy. Their concept catches
                            on, with underground "fight clubs" forming in every
                            town, until an eccentric gets in the way and ignites
                            an out-of-control spiral toward oblivion.
                          description: A brief summary of the movie's plot.
                        popularity:
                          type: number
                          example: 115.18
                          description: >-
                            A numerical value indicating the popularity of the
                            movie, often based on user interactions and ratings.
                        poster_path:
                          type: string
                          nullable: true
                          example: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                          description: >-
                            The URL path to the movie's poster image (used for
                            display purposes).
                        release_date:
                          type: string
                          example: '1999-10-15'
                          description: >-
                            The release date of the movie in the format
                            YYYY-MM-DD.
                        title:
                          type: string
                          example: Fight Club
                          description: The title of the movie as displayed to the audience.
                        video:
                          type: boolean
                          example: false
                          description: >-
                            A boolean value indicating whether there is an
                            associated video (such as a trailer) available for
                            the movie. true means there is a video, whereas
                            false indicates there is none.
                        vote_average:
                          type: number
                          example: 8.4
                          description: The average rating of the movie based on user votes.
                        vote_count:
                          type: number
                          example: 29575
                          description: The total number of votes cast for the movie.
                    example:
                      - adult: false
                        backdrop_path: /hZkgoQYus5vegHoetLkCJzb17zJ.jpg
                        genre_ids:
                          - 18
                        id: 550
                        original_language: en
                        original_title: Fight Club
                        overview: >-
                          A ticking-time-bomb insomniac and a slippery soap
                          salesman channel primal male aggression into a
                          shocking new form of therapy. Their concept catches
                          on, with underground "fight clubs" forming in every
                          town, until an eccentric gets in the way and ignites
                          an out-of-control spiral toward oblivion.
                        popularity: 115.18
                        poster_path: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date: '1999-10-15'
                        title: Fight Club
                        video: false
                        vote_average: 8.4
                        vote_count: 29575
                      - adult: false
                        backdrop_path: /1VqE5z4VIOcNcajJuHLk4fDkY9G.jpg
                        genre_ids:
                          - 28
                          - 27
                        id: 289732
                        original_language: zh
                        original_title: 屍城
                        overview: >-
                          It's the end of the century at a corner of the city in
                          a building riddled with crime - Everyone in the
                          building has turned into zombies. After Jenny's
                          boyfriend is killed in a zombie attack, she faces the
                          challenge of surviving in the face of adversity. In
                          order to stay alive, she struggles with Andy to flee
                          danger.
                        popularity: 14.319
                        poster_path: /u8u3KVq0qfJYmNDsaTVOXy4So6f.jpg
                        release_date: '2014-10-23'
                        title: Zombie Fight Club
                        video: false
                        vote_average: 5.6
                        vote_count: 113
                      - adult: false
                        backdrop_path: /nlDmuxSjJS1Fi2FgVToPm9ytm5S.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                        id: 1213076
                        original_language: ta
                        original_title: Fight Club
                        overview: >-
                          A young boy Selva chasing his football sports dreams
                          suffers a major setback, grows into an angry young man
                          who is drawn into conflicts by evil forces involving
                          him and his family, which he must navigate and reform
                        popularity: 4.154
                        poster_path: /1h6t9nCYVWOLRskB35K51payMok.jpg
                        release_date: '2023-12-15'
                        title: Fight Club
                        video: false
                        vote_average: 6.5
                        vote_count: 14
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 35
                          - 18
                        id: 323667
                        original_language: ru
                        original_title: Вставай и бейся
                        overview: >-
                          Intertwined stories from the gladiator/athletes
                          participating to the Calcio Storico Fiorentino yearly
                          championship.
                        popularity: 9.598
                        poster_path: /rPCOC0myV3Vr7nYGMAOAOpUXgH3.jpg
                        release_date: '2015-06-21'
                        title: Florence Fight Club
                        video: false
                        vote_average: 7.4
                        vote_count: 30
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 973534
                        original_language: ru
                        original_title: Бойцовский клуб (русская версия)
                        overview: >-
                          The Russian version of the movie "Fight Club" is not
                          just a Russian version of a well-known cult film, it
                          is the result and of the hard work of two young men
                          and their love for cinema, Alexander Kukhar
                          (GOLOBON-TV) and Dmitry Ivanov (GRIZLIK FILM) , who
                          are responsible for this project, from the development
                          of its idea and the selection of the cast, to the
                          organization of filming and financial support. 
                          Filming lasted a whole year. Everyday work, constant
                          trips, searching for suitable film sets and an
                          exhausting schedule - all this was not in vain and
                          resulted in an unusually amazing and original project
                          - the film "Fight Club", created in the very heart of
                          southern Russia, in the city of Krasnodar, by two
                          young people
                        popularity: 4.297
                        poster_path: null
                        release_date: ''
                        title: Fight Club (Russian version)
                        video: true
                        vote_average: 7.75
                        vote_count: 30
                      - adult: false
                        backdrop_path: /cHnWx0QoVvtSNkDUpYcM9CXJhV8.jpg
                        genre_ids:
                          - 28
                        id: 347807
                        original_language: hi
                        original_title: 'Fight Club: Members Only'
                        overview: >-
                          Four friends head off to Bombay and get involved in
                          the mother and father of all gang wars.
                        popularity: 3.63
                        poster_path: /aXFmWfWYCCxQTkCn7K86RvDiMHZ.jpg
                        release_date: '2006-02-17'
                        title: 'Fight Club: Members Only'
                        video: false
                        vote_average: 6.4
                        vote_count: 25
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 16
                        id: 1253350
                        original_language: en
                        original_title: Jurassic Fight Club - Cannibal Dinosaur Claymation
                        overview: >-
                          A Short claymation version of Jurassic fight club's
                          first episode.
                        popularity: 1.468
                        poster_path: /qVNnuW43y7fl0EBuP5Mzbi4tN9J.jpg
                        release_date: '2010-07-28'
                        title: Jurassic Fight Club - Cannibal Dinosaur Claymation
                        video: false
                        vote_average: 6.9
                        vote_count: 7
                      - adult: false
                        backdrop_path: /oBMzgMqZTp2X8ZSc3ysVUjT5BeN.jpg
                        genre_ids:
                          - 99
                        id: 1159565
                        original_language: en
                        original_title: Great White Fight Club
                        overview: >-
                          Experts set out to prove that female great white
                          sharks rule the ocean.
                        popularity: 2.11
                        poster_path: /4gbp125YYBOTfNAGP7K81vFW792.jpg
                        release_date: '2023-07-24'
                        title: Great White Fight Club
                        video: false
                        vote_average: 7.8
                        vote_count: 10
                      - adult: false
                        backdrop_path: /tCcjGTnM20ujEtgFCGoMYeYilRj.jpg
                        genre_ids:
                          - 28
                          - 16
                        id: 1254078
                        original_language: en
                        original_title: Fredz Jurassic Fight Club Claymation Style Part 1
                        overview: >-
                          Shorter & More Violent Versions Instead of the lame
                          clay sculptures previously seen. The animals are not
                          in Vivid color B/C I don't have a large amount 
                          colorful clay. This video Has 4 out of 8 Episodes i'll
                          be doing & soon i'll be making colorful Versions of
                          The Creatures In  Runcycles.
                        popularity: 1.989
                        poster_path: /1uSR6XpVK5gKdr4Qcc26CRGTwWk.jpg
                        release_date: '2010-08-14'
                        title: Fredz Jurassic Fight Club Claymation Style Part 1
                        video: false
                        vote_average: 7.2
                        vote_count: 4
                      - adult: false
                        backdrop_path: /5ShuVz8G8LigZKktqAuPnupFxRK.jpg
                        genre_ids:
                          - 28
                          - 16
                        id: 1254080
                        original_language: en
                        original_title: Fredz Jurassic Fight Club Claymation Style Part 2
                        overview: >-
                          Finally, the second half of an epic short revealed!
                          Enjoy... The LOST EPISODE.
                        popularity: 3.534
                        poster_path: /5vKdtHL6cdLzG5ZTPHNvZ7tR0LR.jpg
                        release_date: '2011-12-28'
                        title: Fredz Jurassic Fight Club Claymation Style Part 2
                        video: false
                        vote_average: 6.5
                        vote_count: 4
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 883656
                        original_language: en
                        original_title: GCW Fight Club
                        overview: >-
                          GCW presents Fight Club straight from the Showboat
                          Hotel in Atlantic City, NJ! The event features the GCW
                          World Championship match where Mox defends against
                          Gage in a match that we have been waiting for during
                          the last decade. Who will be the new GCW World
                          Champion?
                        popularity: 3.472
                        poster_path: /a9RWdhRLyx3BqCjlwmZJHXyeMkR.jpg
                        release_date: '2021-10-09'
                        title: GCW Fight Club
                        video: true
                        vote_average: 7.7
                        vote_count: 21
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 18
                          - 80
                        id: 51021
                        original_language: en
                        original_title: 'A Lure: Teen Fight Club'
                        overview: >-
                          A community is under siege as three Belmont Highschool
                          coed students go missing with no trace of their
                          whereabouts. The pressure is on the police to capture
                          the culprits responsible. Scouring the school hallways
                          in search of clues, undercover female detective Maggie
                          Rawdon (Jessica Sonnerborn) enters Belmont High as a
                          transfer student in an attempt to solve the hideous
                          disappearance of the students. Maggie makes a few new
                          friends, and gets invited to a private rave in the
                          country. Just as the group begins to suspect that
                          they've taken a wrong turn, however, the trap is
                          sprung and Maggie finds out firsthand what fate has
                          befallen the missing girls.
                        popularity: 3.067
                        poster_path: /ipl6NdM0LwyakzLH9gKBDn8YhmZ.jpg
                        release_date: '2010-11-16'
                        title: 'A Lure: Teen Fight Club'
                        video: false
                        vote_average: 7.1
                        vote_count: 24
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 1369119
                        original_language: en
                        original_title: 'GCW Fight Club 2024 - Night 1: The Art Of War Games'
                        overview: ''
                        popularity: 1.201
                        poster_path: /e0rAFOeJ0rF4EoloPHnAsZz8Fk4.jpg
                        release_date: '2024-10-12'
                        title: 'GCW Fight Club 2024 - Night 1: The Art Of War Games'
                        video: false
                        vote_average: 6.2
                        vote_count: 2
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 944789
                        original_language: en
                        original_title: Leopard Fight Club
                        overview: >-
                          Witness a remarkable coming-of-age story as we track a
                          young leopard's journey from rookie to royalty in
                          South Africa's lethal Big Five landscape. When we
                          first meet Jack, he's clumsy, fearful, and weak, but
                          he's a fast learner - and he'll need to be. He's
                          destined for a showdown with the area's current
                          leopard monarch, an alpha male with a real mean
                          streak. We follow Jack as he hones his skills and
                          builds up muscle for the ultimate catfight. It's a
                          battle where only the winner will walk out alive.
                        popularity: 1.74
                        poster_path: /pNhu0kvxvBJhpzDEwKf9Zdphbfg.jpg
                        release_date: '2013-04-01'
                        title: Leopard Fight Club
                        video: false
                        vote_average: 7.5
                        vote_count: 11
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 532155
                        original_language: en
                        original_title: 'Musangwe: Fight Club'
                        overview: >-
                          The first rule is that there are no rules. For the
                          bare-knuckle combatants competing in Musangwe fights,
                          anything goes - you can even put a curse on him. The
                          sport, which dates back centuries, has become a South
                          African institution. Any male from the age of nine to
                          ninety can compete. We follow a group of fighters as
                          they slug it out in the ring. Who will be this year's
                          champion?
                        popularity: 1.476
                        poster_path: /tZDxttt0LfgAKwvLIWyOO3fr01c.jpg
                        release_date: '2007-10-01'
                        title: 'Musangwe: Fight Club'
                        video: false
                        vote_average: 7.7
                        vote_count: 16
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 151912
                        original_language: en
                        original_title: Jurassic Fight Club
                        overview: >-
                          Jurassic Fight Club, a paleontology-based miniseries
                          that ran for 12 episodes, depicts how prehistoric
                          beasts hunted their prey, dissecting these battles and
                          uncovering a predatory world far more calculated and
                          complex than originally thought. It was hosted by
                          George Blasing, a self-taught paleontologist.
                        popularity: 2.167
                        poster_path: null
                        release_date: '2008-10-22'
                        title: Jurassic Fight Club
                        video: false
                        vote_average: 7.5
                        vote_count: 17
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 289100
                        original_language: en
                        original_title: Girls Fight Club
                        overview: >-
                          The best women's wrestling competition of all
                          time...and if you think it's fake you're in for a big
                          surprise See LEGENDARY Mixed Martial Arts fighters
                          coach their teams to victory in the cage! aka Chuck
                          Lidell's Girl's Fight Club
                        popularity: 2.383
                        poster_path: null
                        release_date: '2009-06-18'
                        title: Girls Fight Club
                        video: false
                        vote_average: 7.538
                        vote_count: 13
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 969532
                        original_language: en
                        original_title: 'GCW: Fight Club Houston'
                        overview: >-
                          On July 9th GCW presents Fight Club Houston straight
                          from Premier Arena in Houston, Texas. The lineup is
                          almost completed, check it below:  AJ Gray vs Bryan
                          Keith  Nick Gage vs Sadika  Joey Janela vs Dante 
                          Ninja Mack vs Jack Cartwheel  Effy vs Gino  Jimmy
                          Lloyd vs Carter  Lucha Scramble  .... more to be added
                          soon!
                        popularity: 1.136
                        poster_path: /353CATo61TQERENVF6AqIqhUD51.jpg
                        release_date: '2021-07-09'
                        title: 'GCW: Fight Club Houston'
                        video: true
                        vote_average: 7.5
                        vote_count: 12
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 16
                          - 35
                        id: 615408
                        original_language: en
                        original_title: Fight Club But With Tennis And No Fight
                        overview: >-
                          Drama descends upon two tennis-obsessed women as the
                          tension moves from off the court and into the café.
                        popularity: 2.295
                        poster_path: /8pEQqVtSpgCtb7dzhR55EO1dC3l.jpg
                        release_date: '2019-07-13'
                        title: Fight Club But With Tennis And No Fight
                        video: false
                        vote_average: 7.6
                        vote_count: 13
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 259016
                        original_language: en
                        original_title: Insane Fight Club
                        overview: >-
                          A group of friends have created a brand new subculture
                          that is taking over the streets of Glasgow. They've
                          established their very own fight club, but this is no
                          ordinary wrestling event - this is brutal, riotous
                          chaos. Fights don't always stay inside the ring,
                          people are bounced off the side of buses and thrown
                          off balconies in pubs. They now plan the biggest show
                          of their lives. The stakes are high, will it bring
                          them the fame and recognition they need to survive?
                        popularity: 2.53
                        poster_path: null
                        release_date: '2014-03-11'
                        title: Insane Fight Club
                        video: false
                        vote_average: 6.767
                        vote_count: 15
                    description: >-
                      This represents a collection of movie objects returned by
                      the API that provides information about various films.
                  total_pages:
                    type: number
                    example: 3
                    description: The total number of pages available in the response data.
                  total_results:
                    type: number
                    example: 56
                    description: The total number of movie results returned from the query.
              examples:
                movie_id:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /hZkgoQYus5vegHoetLkCJzb17zJ.jpg
                        genre_ids:
                          - 18
                        id: 550
                        original_language: en
                        original_title: Fight Club
                        overview: >-
                          A ticking-time-bomb insomniac and a slippery soap
                          salesman channel primal male aggression into a
                          shocking new form of therapy. Their concept catches
                          on, with underground "fight clubs" forming in every
                          town, until an eccentric gets in the way and ignites
                          an out-of-control spiral toward oblivion.
                        popularity: 115.18
                        poster_path: /pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg
                        release_date: '1999-10-15'
                        title: Fight Club
                        video: false
                        vote_average: 8.4
                        vote_count: 29575
                      - adult: false
                        backdrop_path: /1VqE5z4VIOcNcajJuHLk4fDkY9G.jpg
                        genre_ids:
                          - 28
                          - 27
                        id: 289732
                        original_language: zh
                        original_title: 屍城
                        overview: >-
                          It's the end of the century at a corner of the city in
                          a building riddled with crime - Everyone in the
                          building has turned into zombies. After Jenny's
                          boyfriend is killed in a zombie attack, she faces the
                          challenge of surviving in the face of adversity. In
                          order to stay alive, she struggles with Andy to flee
                          danger.
                        popularity: 14.319
                        poster_path: /u8u3KVq0qfJYmNDsaTVOXy4So6f.jpg
                        release_date: '2014-10-23'
                        title: Zombie Fight Club
                        video: false
                        vote_average: 5.6
                        vote_count: 113
                      - adult: false
                        backdrop_path: /nlDmuxSjJS1Fi2FgVToPm9ytm5S.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                        id: 1213076
                        original_language: ta
                        original_title: Fight Club
                        overview: >-
                          A young boy Selva chasing his football sports dreams
                          suffers a major setback, grows into an angry young man
                          who is drawn into conflicts by evil forces involving
                          him and his family, which he must navigate and reform
                        popularity: 4.154
                        poster_path: /1h6t9nCYVWOLRskB35K51payMok.jpg
                        release_date: '2023-12-15'
                        title: Fight Club
                        video: false
                        vote_average: 6.5
                        vote_count: 14
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 35
                          - 18
                        id: 323667
                        original_language: ru
                        original_title: Вставай и бейся
                        overview: >-
                          Intertwined stories from the gladiator/athletes
                          participating to the Calcio Storico Fiorentino yearly
                          championship.
                        popularity: 9.598
                        poster_path: /rPCOC0myV3Vr7nYGMAOAOpUXgH3.jpg
                        release_date: '2015-06-21'
                        title: Florence Fight Club
                        video: false
                        vote_average: 7.4
                        vote_count: 30
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 973534
                        original_language: ru
                        original_title: Бойцовский клуб (русская версия)
                        overview: >-
                          The Russian version of the movie "Fight Club" is not
                          just a Russian version of a well-known cult film, it
                          is the result and of the hard work of two young men
                          and their love for cinema, Alexander Kukhar
                          (GOLOBON-TV) and Dmitry Ivanov (GRIZLIK FILM) , who
                          are responsible for this project, from the development
                          of its idea and the selection of the cast, to the
                          organization of filming and financial support. 
                          Filming lasted a whole year. Everyday work, constant
                          trips, searching for suitable film sets and an
                          exhausting schedule - all this was not in vain and
                          resulted in an unusually amazing and original project
                          - the film "Fight Club", created in the very heart of
                          southern Russia, in the city of Krasnodar, by two
                          young people
                        popularity: 4.297
                        poster_path: null
                        release_date: ''
                        title: Fight Club (Russian version)
                        video: true
                        vote_average: 7.75
                        vote_count: 30
                      - adult: false
                        backdrop_path: /cHnWx0QoVvtSNkDUpYcM9CXJhV8.jpg
                        genre_ids:
                          - 28
                        id: 347807
                        original_language: hi
                        original_title: 'Fight Club: Members Only'
                        overview: >-
                          Four friends head off to Bombay and get involved in
                          the mother and father of all gang wars.
                        popularity: 3.63
                        poster_path: /aXFmWfWYCCxQTkCn7K86RvDiMHZ.jpg
                        release_date: '2006-02-17'
                        title: 'Fight Club: Members Only'
                        video: false
                        vote_average: 6.4
                        vote_count: 25
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 16
                        id: 1253350
                        original_language: en
                        original_title: Jurassic Fight Club - Cannibal Dinosaur Claymation
                        overview: >-
                          A Short claymation version of Jurassic fight club's
                          first episode.
                        popularity: 1.468
                        poster_path: /qVNnuW43y7fl0EBuP5Mzbi4tN9J.jpg
                        release_date: '2010-07-28'
                        title: Jurassic Fight Club - Cannibal Dinosaur Claymation
                        video: false
                        vote_average: 6.9
                        vote_count: 7
                      - adult: false
                        backdrop_path: /oBMzgMqZTp2X8ZSc3ysVUjT5BeN.jpg
                        genre_ids:
                          - 99
                        id: 1159565
                        original_language: en
                        original_title: Great White Fight Club
                        overview: >-
                          Experts set out to prove that female great white
                          sharks rule the ocean.
                        popularity: 2.11
                        poster_path: /4gbp125YYBOTfNAGP7K81vFW792.jpg
                        release_date: '2023-07-24'
                        title: Great White Fight Club
                        video: false
                        vote_average: 7.8
                        vote_count: 10
                      - adult: false
                        backdrop_path: /tCcjGTnM20ujEtgFCGoMYeYilRj.jpg
                        genre_ids:
                          - 28
                          - 16
                        id: 1254078
                        original_language: en
                        original_title: Fredz Jurassic Fight Club Claymation Style Part 1
                        overview: >-
                          Shorter & More Violent Versions Instead of the lame
                          clay sculptures previously seen. The animals are not
                          in Vivid color B/C I don't have a large amount 
                          colorful clay. This video Has 4 out of 8 Episodes i'll
                          be doing & soon i'll be making colorful Versions of
                          The Creatures In  Runcycles.
                        popularity: 1.989
                        poster_path: /1uSR6XpVK5gKdr4Qcc26CRGTwWk.jpg
                        release_date: '2010-08-14'
                        title: Fredz Jurassic Fight Club Claymation Style Part 1
                        video: false
                        vote_average: 7.2
                        vote_count: 4
                      - adult: false
                        backdrop_path: /5ShuVz8G8LigZKktqAuPnupFxRK.jpg
                        genre_ids:
                          - 28
                          - 16
                        id: 1254080
                        original_language: en
                        original_title: Fredz Jurassic Fight Club Claymation Style Part 2
                        overview: >-
                          Finally, the second half of an epic short revealed!
                          Enjoy... The LOST EPISODE.
                        popularity: 3.534
                        poster_path: /5vKdtHL6cdLzG5ZTPHNvZ7tR0LR.jpg
                        release_date: '2011-12-28'
                        title: Fredz Jurassic Fight Club Claymation Style Part 2
                        video: false
                        vote_average: 6.5
                        vote_count: 4
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 883656
                        original_language: en
                        original_title: GCW Fight Club
                        overview: >-
                          GCW presents Fight Club straight from the Showboat
                          Hotel in Atlantic City, NJ! The event features the GCW
                          World Championship match where Mox defends against
                          Gage in a match that we have been waiting for during
                          the last decade. Who will be the new GCW World
                          Champion?
                        popularity: 3.472
                        poster_path: /a9RWdhRLyx3BqCjlwmZJHXyeMkR.jpg
                        release_date: '2021-10-09'
                        title: GCW Fight Club
                        video: true
                        vote_average: 7.7
                        vote_count: 21
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 18
                          - 80
                        id: 51021
                        original_language: en
                        original_title: 'A Lure: Teen Fight Club'
                        overview: >-
                          A community is under siege as three Belmont Highschool
                          coed students go missing with no trace of their
                          whereabouts. The pressure is on the police to capture
                          the culprits responsible. Scouring the school hallways
                          in search of clues, undercover female detective Maggie
                          Rawdon (Jessica Sonnerborn) enters Belmont High as a
                          transfer student in an attempt to solve the hideous
                          disappearance of the students. Maggie makes a few new
                          friends, and gets invited to a private rave in the
                          country. Just as the group begins to suspect that
                          they've taken a wrong turn, however, the trap is
                          sprung and Maggie finds out firsthand what fate has
                          befallen the missing girls.
                        popularity: 3.067
                        poster_path: /ipl6NdM0LwyakzLH9gKBDn8YhmZ.jpg
                        release_date: '2010-11-16'
                        title: 'A Lure: Teen Fight Club'
                        video: false
                        vote_average: 7.1
                        vote_count: 24
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 1369119
                        original_language: en
                        original_title: 'GCW Fight Club 2024 - Night 1: The Art Of War Games'
                        overview: ''
                        popularity: 1.201
                        poster_path: /e0rAFOeJ0rF4EoloPHnAsZz8Fk4.jpg
                        release_date: '2024-10-12'
                        title: 'GCW Fight Club 2024 - Night 1: The Art Of War Games'
                        video: false
                        vote_average: 6.2
                        vote_count: 2
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 944789
                        original_language: en
                        original_title: Leopard Fight Club
                        overview: >-
                          Witness a remarkable coming-of-age story as we track a
                          young leopard's journey from rookie to royalty in
                          South Africa's lethal Big Five landscape. When we
                          first meet Jack, he's clumsy, fearful, and weak, but
                          he's a fast learner - and he'll need to be. He's
                          destined for a showdown with the area's current
                          leopard monarch, an alpha male with a real mean
                          streak. We follow Jack as he hones his skills and
                          builds up muscle for the ultimate catfight. It's a
                          battle where only the winner will walk out alive.
                        popularity: 1.74
                        poster_path: /pNhu0kvxvBJhpzDEwKf9Zdphbfg.jpg
                        release_date: '2013-04-01'
                        title: Leopard Fight Club
                        video: false
                        vote_average: 7.5
                        vote_count: 11
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 532155
                        original_language: en
                        original_title: 'Musangwe: Fight Club'
                        overview: >-
                          The first rule is that there are no rules. For the
                          bare-knuckle combatants competing in Musangwe fights,
                          anything goes - you can even put a curse on him. The
                          sport, which dates back centuries, has become a South
                          African institution. Any male from the age of nine to
                          ninety can compete. We follow a group of fighters as
                          they slug it out in the ring. Who will be this year's
                          champion?
                        popularity: 1.476
                        poster_path: /tZDxttt0LfgAKwvLIWyOO3fr01c.jpg
                        release_date: '2007-10-01'
                        title: 'Musangwe: Fight Club'
                        video: false
                        vote_average: 7.7
                        vote_count: 16
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 151912
                        original_language: en
                        original_title: Jurassic Fight Club
                        overview: >-
                          Jurassic Fight Club, a paleontology-based miniseries
                          that ran for 12 episodes, depicts how prehistoric
                          beasts hunted their prey, dissecting these battles and
                          uncovering a predatory world far more calculated and
                          complex than originally thought. It was hosted by
                          George Blasing, a self-taught paleontologist.
                        popularity: 2.167
                        poster_path: null
                        release_date: '2008-10-22'
                        title: Jurassic Fight Club
                        video: false
                        vote_average: 7.5
                        vote_count: 17
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 289100
                        original_language: en
                        original_title: Girls Fight Club
                        overview: >-
                          The best women's wrestling competition of all
                          time...and if you think it's fake you're in for a big
                          surprise See LEGENDARY Mixed Martial Arts fighters
                          coach their teams to victory in the cage! aka Chuck
                          Lidell's Girl's Fight Club
                        popularity: 2.383
                        poster_path: null
                        release_date: '2009-06-18'
                        title: Girls Fight Club
                        video: false
                        vote_average: 7.538
                        vote_count: 13
                      - adult: false
                        backdrop_path: null
                        genre_ids: []
                        id: 969532
                        original_language: en
                        original_title: 'GCW: Fight Club Houston'
                        overview: >-
                          On July 9th GCW presents Fight Club Houston straight
                          from Premier Arena in Houston, Texas. The lineup is
                          almost completed, check it below:  AJ Gray vs Bryan
                          Keith  Nick Gage vs Sadika  Joey Janela vs Dante 
                          Ninja Mack vs Jack Cartwheel  Effy vs Gino  Jimmy
                          Lloyd vs Carter  Lucha Scramble  .... more to be added
                          soon!
                        popularity: 1.136
                        poster_path: /353CATo61TQERENVF6AqIqhUD51.jpg
                        release_date: '2021-07-09'
                        title: 'GCW: Fight Club Houston'
                        video: true
                        vote_average: 7.5
                        vote_count: 12
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 16
                          - 35
                        id: 615408
                        original_language: en
                        original_title: Fight Club But With Tennis And No Fight
                        overview: >-
                          Drama descends upon two tennis-obsessed women as the
                          tension moves from off the court and into the café.
                        popularity: 2.295
                        poster_path: /8pEQqVtSpgCtb7dzhR55EO1dC3l.jpg
                        release_date: '2019-07-13'
                        title: Fight Club But With Tennis And No Fight
                        video: false
                        vote_average: 7.6
                        vote_count: 13
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                        id: 259016
                        original_language: en
                        original_title: Insane Fight Club
                        overview: >-
                          A group of friends have created a brand new subculture
                          that is taking over the streets of Glasgow. They've
                          established their very own fight club, but this is no
                          ordinary wrestling event - this is brutal, riotous
                          chaos. Fights don't always stay inside the ring,
                          people are bounced off the side of buses and thrown
                          off balconies in pubs. They now plan the biggest show
                          of their lives. The stakes are high, will it bring
                          them the fame and recognition they need to survive?
                        popularity: 2.53
                        poster_path: null
                        release_date: '2014-03-11'
                        title: Insane Fight Club
                        video: false
                        vote_average: 6.767
                        vote_count: 15
                    total_pages: 3
                    total_results: 56
components:
  parameters:
    region:
      name: region
      in: query
      description: >-
        This is the geographical area or country that can be used to filter
        results based on regional availability.
      schema:
        type: string
        example: ''
    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
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````