> ## Documentation Index
> Fetch the complete documentation index at: https://emiloju.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get similar movies

> Get the similar movies based on genres and keywords.



## OpenAPI

````yaml api-reference/openapi.yaml get /3/movie/18/similar
openapi: 3.0.3
info:
  title: Endpoints
  description: This section contains all the endpoints used in the documentation.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: This section contains all endpoints used for authentication
  - name: Accounts
    description: This section contains account-specific endpoints.
  - name: Favorites
    description: >-
      This section contains all endpoints that allow a TMDB account to add
      movies, TV Shows, episodes to favorites, and also to get a list of
      favorites for the account.
  - name: Movies
    description: >-
      This section contains an endpoint to add a movie to favorites, and another
      to get a list of favorite movies for a TMDB account.
  - name: TV shows
    description: >-
      This section contains an endpoint to get the favorite TV shows for an
      account.
  - name: Watchlist
    description: >-
      This section contains all endpoints that allow a TMDB account to add
      movies, TV Shows to watchlist, and also to get a list of watchlist for the
      account.
  - name: Movies1
    description: >-
      This section contains an endpoint that allows a TMDB account to add a
      movie to watchlist, and another to get the movies in a watchlist.
  - name: TV shows1
    description: >-
      This section contains an endpoint used to get TV shows in an account's
      watchlist.
  - name: Ratings
    description: >-
      This section contains endpoints used to get all movies, TV Shows, and
      episodes rated by a TMDB account.
  - name: Movies12
    description: >-
      This section contains an endpoint used to get a list of movies rated by a
      TMDB account.
  - name: TV shows12
    description: >-
      This section contains an endpoint used to get a list of TV shows rated by
      a TMDB account.
  - name: Episodes
    description: >-
      This section contains an endpoint used to get a list of episodes rated by
      a TMDB account.
  - name: Lists
    description: Endpoints for a TMDB account lists.
  - name: Guest sessions
    description: This section contains all endpoints accessible by a guest session.
  - name: Movies
    description: For movies.
  - name: TV episodes
    description: >-
      This section contains all endpoints used to retrieve data for all TV
      episodes.
  - name: TV seasons
    description: >-
      This section contains all endpoints used to retrieve data for all TV
      seasons.
  - name: TV series
    description: >-
      This section contains all endpoints used to retrieve data for all TV
      series.
  - name: TV series lists
    description: This section contains all endpoints used to list TV series.
  - name: TV episode groups
    description: This section contains an endpoint used to retrieve data for TV episodes.
  - name: Watch providers
    description: Get available regions.
  - name: People
    description: About people lists.
  - name: Companies
    description: >-
      This section contains all endpoints used to retrieve data for supported
      companies.
  - name: Discover
    description: This section contains all endpoints used to discover movies and TV shows.
  - name: Recent changes
    description: >-
      This section contains all endpoints used to get recent changes in the TMDB
      database.
  - name: Credit
    description: This section contains an endpoint used to retrieve movie credits.
  - name: Certifications
    description: >-
      This section contains all endpoints used to get certification for movies
      and TV shows.
  - name: Collections
    description: This section contains all endpoints used to retrieve data for collections
  - name: Configuration
    description: >-
      This section contains all endpoints used to retrieve data on TMDB's
      configurations.
  - name: Find
    description: >-
      This section contains an endpoint used to search the TMDB database by
      External ID.
  - name: Genres
    description: This section contains endpoints related to genres.
  - name: Keywords
    description: >-
      This section contains an endpoint used to get keywords in the database by
      an ID.
  - name: Movie lists
    description: >-
      This section contains all endpoints used to retrieve movies by multiple
      search filters.
  - name: Networks
    description: For network endpoints.
  - name: Reviews
    description: For reviews endpoints.
  - name: Search
    description: For search endpoints.
  - name: Trending
    description: For trending videos.
paths:
  /3/movie/18/similar:
    get:
      tags:
        - Movies
      summary: Get similar movies
      description: Get the similar movies based on genres and keywords.
      operationId: getSimilarMovies
      responses:
        '200':
          description: New Request
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=8314
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 01 Jan 2025 22:48:41 GMT
            ETag:
              schema:
                type: string
                example: W/"03cbd6b1a8ea513d8dff3838d8ca572f"
            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 4dacb01807cb4c0e8eb52307b7de1392.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: bjz0xbFcHZbArP3dsaV4dfF2PfzYrQgNIm8kF76sF4w7sxdPMnheAA==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: CDG50-C1
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '14851'
            x-memc-expires:
              schema:
                type: string
                example: '8314'
            x-memc-key:
              schema:
                type: string
                example: 41143552eb947a6294ae441499d5798b
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          nullable: true
                          example: null
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 99
                          example:
                            - 99
                            - 878
                            - 35
                        id:
                          type: number
                          example: 410338
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: Let's Visit the World of the Future
                        overview:
                          type: string
                          example: >-
                            A travelogue inviting viewers of today to come visit
                            the future. The person who found this mysterious
                            16mm film in his basement in 1973, Rev. Ivan Stang,
                            later ran The SubGenius Foundation, the Slack
                            Prophecy religion devoted to Texas cult religion
                            salesman J.R. "Bob" Dobbs.
                        popularity:
                          type: number
                          example: 0.364
                        poster_path:
                          type: string
                          example: /gFPnIJHEK4j56A2TcAEnlQ1ztOy.jpg
                        release_date:
                          type: string
                          example: '1973-08-06'
                        title:
                          type: string
                          example: Let's Visit the World of the Future
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 6.2
                        vote_count:
                          type: number
                          example: 4
                    example:
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                          - 878
                          - 35
                        id: 410338
                        original_language: en
                        original_title: Let's Visit the World of the Future
                        overview: >-
                          A travelogue inviting viewers of today to come visit
                          the future. The person who found this mysterious 16mm
                          film in his basement in 1973, Rev. Ivan Stang, later
                          ran The SubGenius Foundation, the Slack Prophecy
                          religion devoted to Texas cult religion salesman J.R.
                          "Bob" Dobbs.
                        popularity: 0.364
                        poster_path: /gFPnIJHEK4j56A2TcAEnlQ1ztOy.jpg
                        release_date: '1973-08-06'
                        title: Let's Visit the World of the Future
                        video: false
                        vote_average: 6.2
                        vote_count: 4
                      - adult: false
                        backdrop_path: /gxSVZCUlDd8upT1G2wdrUdz2hxG.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 35
                        id: 8961
                        original_language: en
                        original_title: Bad Boys II
                        overview: >-
                          Detectives Marcus Burnett and Mike Lowrey of the Miami
                          Narcotics Task Force are tasked with stopping the flow
                          of the drug Ecstasy into Miami. They track the drugs
                          to the whacked-out Cuban drug lord Johnny Tapia, who
                          is also involved in a bloody war with Russian and
                          Haitian mobsters. If that isn't bad enough, there's
                          tension between the two detectives when Marcus
                          discovers that playboy Mike is secretly romancing
                          Marcus’ sister, Syd.
                        popularity: 42.601
                        poster_path: /yCvB5fG5aEPqa1St7ihY6KEAsHD.jpg
                        release_date: '2003-07-18'
                        title: Bad Boys II
                        video: false
                        vote_average: 6.646
                        vote_count: 5480
                      - adult: false
                        backdrop_path: /qKWQ9IEDkMawD7sgKnIGCdFAhct.jpg
                        genre_ids:
                          - 53
                          - 28
                        id: 8963
                        original_language: en
                        original_title: Crimson Tide
                        overview: "After the Cold War, a breakaway Russian republic with nuclear warheads becomes a possible worldwide threat. U.S. submarine Capt. Frank Ramsey signs on a relatively green but highly recommended Lt. Cmdr. Ron Hunter to the USS Alabama, which may be the only ship able\_to stop a possible Armageddon. When Ramsay insists that the Alabama must act aggressively, Hunter, fearing they will start rather than stop a disaster, leads a potential mutiny to stop him."
                        popularity: 26.927
                        poster_path: /21nqRJ6ofEgVvEl68J4O9V26Xzy.jpg
                        release_date: '1995-05-12'
                        title: Crimson Tide
                        video: false
                        vote_average: 7.171
                        vote_count: 1752
                      - adult: false
                        backdrop_path: /e9tpS8MaUcPTtCIlqVgwGP2zOsQ.jpg
                        genre_ids:
                          - 878
                          - 28
                        id: 8974
                        original_language: en
                        original_title: The War of the Worlds
                        overview: >-
                          The residents of a small town are excited when a
                          flaming meteor lands in the hills, until they discover
                          it is the first of many transport devices from Mars
                          bringing an army of invaders invincible to any
                          man-made weapon, even the atomic bomb.
                        popularity: 21.247
                        poster_path: /gzc75Za4ArqfXIIr7STNnIE5rnA.jpg
                        release_date: '1953-08-13'
                        title: The War of the Worlds
                        video: false
                        vote_average: 6.816
                        vote_count: 625
                      - adult: false
                        backdrop_path: /2c0Ls3EwFoWJWVqWuaMyCUAgmzD.jpg
                        genre_ids:
                          - 53
                          - 28
                          - 12
                          - 80
                          - 18
                        id: 8978
                        original_language: en
                        original_title: Assault on Precinct 13
                        overview: >-
                          On New Year's Eve, inside a police station that's
                          about to be closed for good, officer Jake Roenick must
                          cobble together a force made up cops and criminals to
                          save themselves from a mob looking to kill mobster
                          Marion Bishop.
                        popularity: 18.241
                        poster_path: /oBpsRvMN1ONl8oFHuWt1rasDYFJ.jpg
                        release_date: '2005-01-19'
                        title: Assault on Precinct 13
                        video: false
                        vote_average: 6.169
                        vote_count: 1080
                      - adult: false
                        backdrop_path: /30XLt1HzwOsdciWVaYVxlJq3cjH.jpg
                        genre_ids:
                          - 12
                          - 16
                          - 10751
                          - 14
                          - 878
                        id: 9016
                        original_language: en
                        original_title: Treasure Planet
                        overview: >-
                          When space galleon cabin boy Jim Hawkins discovers a
                          map to an intergalactic "loot of a thousand worlds," a
                          cyborg cook named John Silver teaches him to battle
                          supernovas and space storms on their journey to find
                          treasure.
                        popularity: 48.335
                        poster_path: /zMKatZ0c0NCoKzfizaCzVUcbKMf.jpg
                        release_date: '2002-11-26'
                        title: Treasure Planet
                        video: false
                        vote_average: 7.6
                        vote_count: 4209
                      - adult: false
                        backdrop_path: /wMvqec4N7Na5DHdyQugh7w0UpBF.jpg
                        genre_ids:
                          - 27
                          - 878
                          - 53
                        id: 8843
                        original_language: en
                        original_title: The Cell
                        overview: >-
                          A psychotherapist journeys inside a comatose serial
                          killer in the hopes of saving his latest victim.
                        popularity: 17.289
                        poster_path: /kfYVxvDDAJoFq2knHUzAZP09pAc.jpg
                        release_date: '2000-08-17'
                        title: The Cell
                        video: false
                        vote_average: 6.273
                        vote_count: 1528
                      - adult: false
                        backdrop_path: /i7jKGJZjGmLZFt48xLtwSgn9Cdw.jpg
                        genre_ids:
                          - 12
                          - 14
                          - 10751
                        id: 8844
                        original_language: en
                        original_title: Jumanji
                        overview: >-
                          When siblings Judy and Peter discover an enchanted
                          board game that opens the door to a magical world,
                          they unwittingly invite Alan -- an adult who's been
                          trapped inside the game for 26 years -- into their
                          living room. Alan's only hope for freedom is to finish
                          the game, which proves risky as all three find
                          themselves running from giant rhinoceroses, evil
                          monkeys and other terrifying creatures.
                        popularity: 20.374
                        poster_path: /p67m5dzwyxWd46a6of2c9IVfQz7.jpg
                        release_date: '1995-12-15'
                        title: Jumanji
                        video: false
                        vote_average: 7.2
                        vote_count: 10547
                      - adult: false
                        backdrop_path: /isFQiBiBiz4Xyx22sTs6CR1scL3.jpg
                        genre_ids:
                          - 28
                          - 53
                        id: 8845
                        original_language: en
                        original_title: Under Siege
                        overview: >-
                          A disgruntled ex-CIA operative, his assistant and
                          their assembled group of terrorists seize a battleship
                          with nuclear blackmail in mind. They've planned for
                          every contingency but ignore the ship's cook, former
                          Navy SEAL Casey Ryback—an error that could be fatal.
                        popularity: 27.95
                        poster_path: /myHxm9p8fhEsXyaLO6DawYJKolg.jpg
                        release_date: '1992-10-08'
                        title: Under Siege
                        video: false
                        vote_average: 6.3
                        vote_count: 1535
                      - adult: false
                        backdrop_path: /j3CMtQbRS4bBAuRuoTBpnPAaHSj.jpg
                        genre_ids:
                          - 14
                          - 28
                        id: 8850
                        original_language: en
                        original_title: The Shadow
                        overview: >-
                          Based on the 1930's comic strip, puts the hero up
                          against his arch enemy, Shiwan Khan, who plans to take
                          over the world by holding a city to ransom using an
                          atom bomb. Using his powers of invisibility and "The
                          power to cloud men's minds", the Shadow comes blazing
                          to the city's rescue with explosive results.
                        popularity: 13.024
                        poster_path: /xAbFJH3vQYZvUyzzGAtG4OLy492.jpg
                        release_date: '1994-07-01'
                        title: The Shadow
                        video: false
                        vote_average: 6.1
                        vote_count: 521
                      - adult: false
                        backdrop_path: /6Ne2ewHwQqfTZEWYXRsA3Wy9Lc5.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 8851
                        original_language: en
                        original_title: The Blob
                        overview: >-
                          A drive-in favorite, this sci-fi classic follows
                          teenagers Steve and his best girl, Jane, as they try
                          to protect their hometown from a gelatinous alien life
                          form that engulfs everything it touches. The first to
                          discover the substance and live to tell about it,
                          Steve and Jane witness the blob destroying an elderly
                          man, then it growing to a terrifying size. But no one
                          else has seen the goo, and policeman Dave refuses to
                          believe the kids without proof.
                        popularity: 11.141
                        poster_path: /ctOwn1Ibg3SjDG4WulvFvSH0PRT.jpg
                        release_date: '1958-09-10'
                        title: The Blob
                        video: false
                        vote_average: 6.2
                        vote_count: 602
                      - adult: false
                        backdrop_path: /61Wj1C1hrOyu6mAHARS8J5ShOzq.jpg
                        genre_ids:
                          - 878
                          - 28
                          - 12
                          - 18
                        id: 8854
                        original_language: en
                        original_title: Steel
                        overview: >-
                          When a renegade military reject puts new superweapons
                          in dangerous hands, John Henry Irons becomes Steel.
                          Wearing body armor, wielding a fearsome electrohammer
                          and riding a gadget-packed motorcycle, he's ready to
                          wage war... if he can fix the untimely glitches in his
                          untested gear.
                        popularity: 9.603
                        poster_path: /hbH8oXJZPwcYxaa1JrUMq4ogg7G.jpg
                        release_date: '1997-08-15'
                        title: Steel
                        video: false
                        vote_average: 4.306
                        vote_count: 255
                      - adult: false
                        backdrop_path: /nOHKrmn2H1buOGEHPBh9HL2M8eg.jpg
                        genre_ids:
                          - 53
                          - 28
                          - 878
                        id: 8870
                        original_language: en
                        original_title: Red Planet
                        overview: >-
                          Astronauts search for solutions to save a dying Earth
                          by searching on Mars, only to have the mission go
                          terribly awry.
                        popularity: 15.959
                        poster_path: /6svTVlVEJDoOOEz1G09HLeb7vtF.jpg
                        release_date: '2000-11-10'
                        title: Red Planet
                        video: false
                        vote_average: 5.703
                        vote_count: 1028
                      - adult: false
                        backdrop_path: /eeMoFKxjjiCi6iep2GEZtSAMYIr.jpg
                        genre_ids:
                          - 18
                          - 878
                        id: 19
                        original_language: de
                        original_title: Metropolis
                        overview: >-
                          In a futuristic city sharply divided between the rich
                          and the poor, the son of the city's mastermind meets a
                          prophet who predicts the coming of a savior to mediate
                          their differences.
                        popularity: 27.054
                        poster_path: /vZIJxGnjcswPCAa52jhbl01FQkV.jpg
                        release_date: '1927-02-06'
                        title: Metropolis
                        video: false
                        vote_average: 8.113
                        vote_count: 2776
                      - adult: false
                        backdrop_path: /w5IDXtifKntw0ajv2co7jFlTQDM.jpg
                        genre_ids:
                          - 878
                          - 9648
                          - 12
                        id: 62
                        original_language: en
                        original_title: '2001: A Space Odyssey'
                        overview: >-
                          Humanity finds a mysterious object buried beneath the
                          lunar surface and sets off to find its origins with
                          the help of HAL 9000, the world's most advanced super
                          computer.
                        popularity: 60.742
                        poster_path: /ve72VxNqjGM69Uky4WTo2bK6rfq.jpg
                        release_date: '1968-04-02'
                        title: '2001: A Space Odyssey'
                        video: false
                        vote_average: 8.071
                        vote_count: 11569
                      - adult: false
                        backdrop_path: /1IWaKG7AWiYMhADxhGtnElDJAGI.jpg
                        genre_ids:
                          - 878
                          - 53
                          - 9648
                        id: 63
                        original_language: en
                        original_title: Twelve Monkeys
                        overview: >-
                          In the year 2035, convict James Cole reluctantly
                          volunteers to be sent back in time to discover the
                          origin of a deadly virus that wiped out nearly all of
                          the earth's population and forced the survivors into
                          underground communities. But when Cole is mistakenly
                          sent to 1990 instead of 1996, he's arrested and locked
                          up in a mental hospital. There he meets psychiatrist
                          Dr. Kathryn Railly, and patient Jeffrey Goines, the
                          son of a famous virus expert, who may hold the key to
                          the mysterious rogue group, the Army of the 12
                          Monkeys, thought to be responsible for unleashing the
                          killer disease.
                        popularity: 37.171
                        poster_path: /gt3iyguaCIw8DpQZI1LIN5TohM2.jpg
                        release_date: '1995-12-29'
                        title: Twelve Monkeys
                        video: false
                        vote_average: 7.6
                        vote_count: 8364
                      - adult: false
                        backdrop_path: /ziRWOYnl6e2JUaHYmFLR1kfcECM.jpg
                        genre_ids:
                          - 35
                          - 878
                        id: 68
                        original_language: en
                        original_title: Brazil
                        overview: >-
                          Low-level bureaucrat Sam Lowry escapes the monotony of
                          his day-to-day life through a recurring daydream of
                          himself as a virtuous hero saving a beautiful damsel.
                          Investigating a case that led to the wrongful arrest
                          and eventual death of an innocent man instead of
                          wanted terrorist Harry Tuttle, he meets the woman from
                          his daydream, and in trying to help her gets caught in
                          a web of mistaken identities, mindless bureaucracy and
                          lies.
                        popularity: 18.029
                        poster_path: /2w09J0KUnVtJvqPYu8N63XjAyCR.jpg
                        release_date: '1985-02-20'
                        title: Brazil
                        video: false
                        vote_average: 7.7
                        vote_count: 3311
                      - adult: false
                        backdrop_path: /nH6hPhJq3EEv9CnBZgXU3IQnpJo.jpg
                        genre_ids:
                          - 12
                          - 53
                          - 878
                        id: 74
                        original_language: en
                        original_title: War of the Worlds
                        overview: >-
                          Ray Ferrier is a divorced dockworker and
                          less-than-perfect father. Soon after his ex-wife and
                          her new husband drop off his teenage son and young
                          daughter for a rare weekend visit, a strange and
                          powerful lightning storm touches down.
                        popularity: 48.09
                        poster_path: /oZmJ6hD2dc6zLCIPgw8onPMo0QC.jpg
                        release_date: '2005-06-13'
                        title: War of the Worlds
                        video: false
                        vote_average: 6.5
                        vote_count: 8391
                      - adult: false
                        backdrop_path: /ELsTifJ2lu4vsMhoHeZ5EnncHw.jpg
                        genre_ids:
                          - 35
                          - 14
                          - 878
                        id: 75
                        original_language: en
                        original_title: Mars Attacks!
                        overview: >-
                          A fleet of Martian spacecraft surrounds the world's
                          major cities and all of humanity waits to see if the
                          extraterrestrial visitors have, as they claim, "come
                          in peace." U.S. President James Dale receives
                          assurance from science professor Donald Kessler that
                          the Martians' mission is a friendly one. But when a
                          peaceful exchange ends in the total annihilation of
                          the U.S. Congress, military men call for a full-scale
                          nuclear retaliation.
                        popularity: 26.059
                        poster_path: /bGxhc8Cd908XbDxg5baDvbiVzUI.jpg
                        release_date: '1996-12-13'
                        title: Mars Attacks!
                        video: false
                        vote_average: 6.409
                        vote_count: 5416
                      - adult: false
                        backdrop_path: /qr7dUqleMRd0VgollazbmyP9XjI.jpg
                        genre_ids:
                          - 878
                          - 18
                          - 53
                        id: 78
                        original_language: en
                        original_title: Blade Runner
                        overview: >-
                          In the smog-choked dystopian Los Angeles of 2019,
                          blade runner Rick Deckard is called out of retirement
                          to terminate a quartet of replicants who have escaped
                          to Earth seeking their creator for a way to extend
                          their short life spans.
                        popularity: 70.793
                        poster_path: /63N9uy8nd9j7Eog2axPQ8lbr3Wj.jpg
                        release_date: '1982-06-25'
                        title: Blade Runner
                        video: false
                        vote_average: 7.9
                        vote_count: 13825
                  total_pages:
                    type: number
                    example: 4093
                  total_results:
                    type: number
                    example: 81849
              examples:
                New Request:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 99
                          - 878
                          - 35
                        id: 410338
                        original_language: en
                        original_title: Let's Visit the World of the Future
                        overview: >-
                          A travelogue inviting viewers of today to come visit
                          the future. The person who found this mysterious 16mm
                          film in his basement in 1973, Rev. Ivan Stang, later
                          ran The SubGenius Foundation, the Slack Prophecy
                          religion devoted to Texas cult religion salesman J.R.
                          "Bob" Dobbs.
                        popularity: 0.364
                        poster_path: /gFPnIJHEK4j56A2TcAEnlQ1ztOy.jpg
                        release_date: '1973-08-06'
                        title: Let's Visit the World of the Future
                        video: false
                        vote_average: 6.2
                        vote_count: 4
                      - adult: false
                        backdrop_path: /gxSVZCUlDd8upT1G2wdrUdz2hxG.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 35
                        id: 8961
                        original_language: en
                        original_title: Bad Boys II
                        overview: >-
                          Detectives Marcus Burnett and Mike Lowrey of the Miami
                          Narcotics Task Force are tasked with stopping the flow
                          of the drug Ecstasy into Miami. They track the drugs
                          to the whacked-out Cuban drug lord Johnny Tapia, who
                          is also involved in a bloody war with Russian and
                          Haitian mobsters. If that isn't bad enough, there's
                          tension between the two detectives when Marcus
                          discovers that playboy Mike is secretly romancing
                          Marcus’ sister, Syd.
                        popularity: 42.601
                        poster_path: /yCvB5fG5aEPqa1St7ihY6KEAsHD.jpg
                        release_date: '2003-07-18'
                        title: Bad Boys II
                        video: false
                        vote_average: 6.646
                        vote_count: 5480
                      - adult: false
                        backdrop_path: /qKWQ9IEDkMawD7sgKnIGCdFAhct.jpg
                        genre_ids:
                          - 53
                          - 28
                        id: 8963
                        original_language: en
                        original_title: Crimson Tide
                        overview: "After the Cold War, a breakaway Russian republic with nuclear warheads becomes a possible worldwide threat. U.S. submarine Capt. Frank Ramsey signs on a relatively green but highly recommended Lt. Cmdr. Ron Hunter to the USS Alabama, which may be the only ship able\_to stop a possible Armageddon. When Ramsay insists that the Alabama must act aggressively, Hunter, fearing they will start rather than stop a disaster, leads a potential mutiny to stop him."
                        popularity: 26.927
                        poster_path: /21nqRJ6ofEgVvEl68J4O9V26Xzy.jpg
                        release_date: '1995-05-12'
                        title: Crimson Tide
                        video: false
                        vote_average: 7.171
                        vote_count: 1752
                      - adult: false
                        backdrop_path: /e9tpS8MaUcPTtCIlqVgwGP2zOsQ.jpg
                        genre_ids:
                          - 878
                          - 28
                        id: 8974
                        original_language: en
                        original_title: The War of the Worlds
                        overview: >-
                          The residents of a small town are excited when a
                          flaming meteor lands in the hills, until they discover
                          it is the first of many transport devices from Mars
                          bringing an army of invaders invincible to any
                          man-made weapon, even the atomic bomb.
                        popularity: 21.247
                        poster_path: /gzc75Za4ArqfXIIr7STNnIE5rnA.jpg
                        release_date: '1953-08-13'
                        title: The War of the Worlds
                        video: false
                        vote_average: 6.816
                        vote_count: 625
                      - adult: false
                        backdrop_path: /2c0Ls3EwFoWJWVqWuaMyCUAgmzD.jpg
                        genre_ids:
                          - 53
                          - 28
                          - 12
                          - 80
                          - 18
                        id: 8978
                        original_language: en
                        original_title: Assault on Precinct 13
                        overview: >-
                          On New Year's Eve, inside a police station that's
                          about to be closed for good, officer Jake Roenick must
                          cobble together a force made up cops and criminals to
                          save themselves from a mob looking to kill mobster
                          Marion Bishop.
                        popularity: 18.241
                        poster_path: /oBpsRvMN1ONl8oFHuWt1rasDYFJ.jpg
                        release_date: '2005-01-19'
                        title: Assault on Precinct 13
                        video: false
                        vote_average: 6.169
                        vote_count: 1080
                      - adult: false
                        backdrop_path: /30XLt1HzwOsdciWVaYVxlJq3cjH.jpg
                        genre_ids:
                          - 12
                          - 16
                          - 10751
                          - 14
                          - 878
                        id: 9016
                        original_language: en
                        original_title: Treasure Planet
                        overview: >-
                          When space galleon cabin boy Jim Hawkins discovers a
                          map to an intergalactic "loot of a thousand worlds," a
                          cyborg cook named John Silver teaches him to battle
                          supernovas and space storms on their journey to find
                          treasure.
                        popularity: 48.335
                        poster_path: /zMKatZ0c0NCoKzfizaCzVUcbKMf.jpg
                        release_date: '2002-11-26'
                        title: Treasure Planet
                        video: false
                        vote_average: 7.6
                        vote_count: 4209
                      - adult: false
                        backdrop_path: /wMvqec4N7Na5DHdyQugh7w0UpBF.jpg
                        genre_ids:
                          - 27
                          - 878
                          - 53
                        id: 8843
                        original_language: en
                        original_title: The Cell
                        overview: >-
                          A psychotherapist journeys inside a comatose serial
                          killer in the hopes of saving his latest victim.
                        popularity: 17.289
                        poster_path: /kfYVxvDDAJoFq2knHUzAZP09pAc.jpg
                        release_date: '2000-08-17'
                        title: The Cell
                        video: false
                        vote_average: 6.273
                        vote_count: 1528
                      - adult: false
                        backdrop_path: /i7jKGJZjGmLZFt48xLtwSgn9Cdw.jpg
                        genre_ids:
                          - 12
                          - 14
                          - 10751
                        id: 8844
                        original_language: en
                        original_title: Jumanji
                        overview: >-
                          When siblings Judy and Peter discover an enchanted
                          board game that opens the door to a magical world,
                          they unwittingly invite Alan -- an adult who's been
                          trapped inside the game for 26 years -- into their
                          living room. Alan's only hope for freedom is to finish
                          the game, which proves risky as all three find
                          themselves running from giant rhinoceroses, evil
                          monkeys and other terrifying creatures.
                        popularity: 20.374
                        poster_path: /p67m5dzwyxWd46a6of2c9IVfQz7.jpg
                        release_date: '1995-12-15'
                        title: Jumanji
                        video: false
                        vote_average: 7.2
                        vote_count: 10547
                      - adult: false
                        backdrop_path: /isFQiBiBiz4Xyx22sTs6CR1scL3.jpg
                        genre_ids:
                          - 28
                          - 53
                        id: 8845
                        original_language: en
                        original_title: Under Siege
                        overview: >-
                          A disgruntled ex-CIA operative, his assistant and
                          their assembled group of terrorists seize a battleship
                          with nuclear blackmail in mind. They've planned for
                          every contingency but ignore the ship's cook, former
                          Navy SEAL Casey Ryback—an error that could be fatal.
                        popularity: 27.95
                        poster_path: /myHxm9p8fhEsXyaLO6DawYJKolg.jpg
                        release_date: '1992-10-08'
                        title: Under Siege
                        video: false
                        vote_average: 6.3
                        vote_count: 1535
                      - adult: false
                        backdrop_path: /j3CMtQbRS4bBAuRuoTBpnPAaHSj.jpg
                        genre_ids:
                          - 14
                          - 28
                        id: 8850
                        original_language: en
                        original_title: The Shadow
                        overview: >-
                          Based on the 1930's comic strip, puts the hero up
                          against his arch enemy, Shiwan Khan, who plans to take
                          over the world by holding a city to ransom using an
                          atom bomb. Using his powers of invisibility and "The
                          power to cloud men's minds", the Shadow comes blazing
                          to the city's rescue with explosive results.
                        popularity: 13.024
                        poster_path: /xAbFJH3vQYZvUyzzGAtG4OLy492.jpg
                        release_date: '1994-07-01'
                        title: The Shadow
                        video: false
                        vote_average: 6.1
                        vote_count: 521
                      - adult: false
                        backdrop_path: /6Ne2ewHwQqfTZEWYXRsA3Wy9Lc5.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 8851
                        original_language: en
                        original_title: The Blob
                        overview: >-
                          A drive-in favorite, this sci-fi classic follows
                          teenagers Steve and his best girl, Jane, as they try
                          to protect their hometown from a gelatinous alien life
                          form that engulfs everything it touches. The first to
                          discover the substance and live to tell about it,
                          Steve and Jane witness the blob destroying an elderly
                          man, then it growing to a terrifying size. But no one
                          else has seen the goo, and policeman Dave refuses to
                          believe the kids without proof.
                        popularity: 11.141
                        poster_path: /ctOwn1Ibg3SjDG4WulvFvSH0PRT.jpg
                        release_date: '1958-09-10'
                        title: The Blob
                        video: false
                        vote_average: 6.2
                        vote_count: 602
                      - adult: false
                        backdrop_path: /61Wj1C1hrOyu6mAHARS8J5ShOzq.jpg
                        genre_ids:
                          - 878
                          - 28
                          - 12
                          - 18
                        id: 8854
                        original_language: en
                        original_title: Steel
                        overview: >-
                          When a renegade military reject puts new superweapons
                          in dangerous hands, John Henry Irons becomes Steel.
                          Wearing body armor, wielding a fearsome electrohammer
                          and riding a gadget-packed motorcycle, he's ready to
                          wage war... if he can fix the untimely glitches in his
                          untested gear.
                        popularity: 9.603
                        poster_path: /hbH8oXJZPwcYxaa1JrUMq4ogg7G.jpg
                        release_date: '1997-08-15'
                        title: Steel
                        video: false
                        vote_average: 4.306
                        vote_count: 255
                      - adult: false
                        backdrop_path: /nOHKrmn2H1buOGEHPBh9HL2M8eg.jpg
                        genre_ids:
                          - 53
                          - 28
                          - 878
                        id: 8870
                        original_language: en
                        original_title: Red Planet
                        overview: >-
                          Astronauts search for solutions to save a dying Earth
                          by searching on Mars, only to have the mission go
                          terribly awry.
                        popularity: 15.959
                        poster_path: /6svTVlVEJDoOOEz1G09HLeb7vtF.jpg
                        release_date: '2000-11-10'
                        title: Red Planet
                        video: false
                        vote_average: 5.703
                        vote_count: 1028
                      - adult: false
                        backdrop_path: /eeMoFKxjjiCi6iep2GEZtSAMYIr.jpg
                        genre_ids:
                          - 18
                          - 878
                        id: 19
                        original_language: de
                        original_title: Metropolis
                        overview: >-
                          In a futuristic city sharply divided between the rich
                          and the poor, the son of the city's mastermind meets a
                          prophet who predicts the coming of a savior to mediate
                          their differences.
                        popularity: 27.054
                        poster_path: /vZIJxGnjcswPCAa52jhbl01FQkV.jpg
                        release_date: '1927-02-06'
                        title: Metropolis
                        video: false
                        vote_average: 8.113
                        vote_count: 2776
                      - adult: false
                        backdrop_path: /w5IDXtifKntw0ajv2co7jFlTQDM.jpg
                        genre_ids:
                          - 878
                          - 9648
                          - 12
                        id: 62
                        original_language: en
                        original_title: '2001: A Space Odyssey'
                        overview: >-
                          Humanity finds a mysterious object buried beneath the
                          lunar surface and sets off to find its origins with
                          the help of HAL 9000, the world's most advanced super
                          computer.
                        popularity: 60.742
                        poster_path: /ve72VxNqjGM69Uky4WTo2bK6rfq.jpg
                        release_date: '1968-04-02'
                        title: '2001: A Space Odyssey'
                        video: false
                        vote_average: 8.071
                        vote_count: 11569
                      - adult: false
                        backdrop_path: /1IWaKG7AWiYMhADxhGtnElDJAGI.jpg
                        genre_ids:
                          - 878
                          - 53
                          - 9648
                        id: 63
                        original_language: en
                        original_title: Twelve Monkeys
                        overview: >-
                          In the year 2035, convict James Cole reluctantly
                          volunteers to be sent back in time to discover the
                          origin of a deadly virus that wiped out nearly all of
                          the earth's population and forced the survivors into
                          underground communities. But when Cole is mistakenly
                          sent to 1990 instead of 1996, he's arrested and locked
                          up in a mental hospital. There he meets psychiatrist
                          Dr. Kathryn Railly, and patient Jeffrey Goines, the
                          son of a famous virus expert, who may hold the key to
                          the mysterious rogue group, the Army of the 12
                          Monkeys, thought to be responsible for unleashing the
                          killer disease.
                        popularity: 37.171
                        poster_path: /gt3iyguaCIw8DpQZI1LIN5TohM2.jpg
                        release_date: '1995-12-29'
                        title: Twelve Monkeys
                        video: false
                        vote_average: 7.6
                        vote_count: 8364
                      - adult: false
                        backdrop_path: /ziRWOYnl6e2JUaHYmFLR1kfcECM.jpg
                        genre_ids:
                          - 35
                          - 878
                        id: 68
                        original_language: en
                        original_title: Brazil
                        overview: >-
                          Low-level bureaucrat Sam Lowry escapes the monotony of
                          his day-to-day life through a recurring daydream of
                          himself as a virtuous hero saving a beautiful damsel.
                          Investigating a case that led to the wrongful arrest
                          and eventual death of an innocent man instead of
                          wanted terrorist Harry Tuttle, he meets the woman from
                          his daydream, and in trying to help her gets caught in
                          a web of mistaken identities, mindless bureaucracy and
                          lies.
                        popularity: 18.029
                        poster_path: /2w09J0KUnVtJvqPYu8N63XjAyCR.jpg
                        release_date: '1985-02-20'
                        title: Brazil
                        video: false
                        vote_average: 7.7
                        vote_count: 3311
                      - adult: false
                        backdrop_path: /nH6hPhJq3EEv9CnBZgXU3IQnpJo.jpg
                        genre_ids:
                          - 12
                          - 53
                          - 878
                        id: 74
                        original_language: en
                        original_title: War of the Worlds
                        overview: >-
                          Ray Ferrier is a divorced dockworker and
                          less-than-perfect father. Soon after his ex-wife and
                          her new husband drop off his teenage son and young
                          daughter for a rare weekend visit, a strange and
                          powerful lightning storm touches down.
                        popularity: 48.09
                        poster_path: /oZmJ6hD2dc6zLCIPgw8onPMo0QC.jpg
                        release_date: '2005-06-13'
                        title: War of the Worlds
                        video: false
                        vote_average: 6.5
                        vote_count: 8391
                      - adult: false
                        backdrop_path: /ELsTifJ2lu4vsMhoHeZ5EnncHw.jpg
                        genre_ids:
                          - 35
                          - 14
                          - 878
                        id: 75
                        original_language: en
                        original_title: Mars Attacks!
                        overview: >-
                          A fleet of Martian spacecraft surrounds the world's
                          major cities and all of humanity waits to see if the
                          extraterrestrial visitors have, as they claim, "come
                          in peace." U.S. President James Dale receives
                          assurance from science professor Donald Kessler that
                          the Martians' mission is a friendly one. But when a
                          peaceful exchange ends in the total annihilation of
                          the U.S. Congress, military men call for a full-scale
                          nuclear retaliation.
                        popularity: 26.059
                        poster_path: /bGxhc8Cd908XbDxg5baDvbiVzUI.jpg
                        release_date: '1996-12-13'
                        title: Mars Attacks!
                        video: false
                        vote_average: 6.409
                        vote_count: 5416
                      - adult: false
                        backdrop_path: /qr7dUqleMRd0VgollazbmyP9XjI.jpg
                        genre_ids:
                          - 878
                          - 18
                          - 53
                        id: 78
                        original_language: en
                        original_title: Blade Runner
                        overview: >-
                          In the smog-choked dystopian Los Angeles of 2019,
                          blade runner Rick Deckard is called out of retirement
                          to terminate a quartet of replicants who have escaped
                          to Earth seeking their creator for a way to extend
                          their short life spans.
                        popularity: 70.793
                        poster_path: /63N9uy8nd9j7Eog2axPQ8lbr3Wj.jpg
                        release_date: '1982-06-25'
                        title: Blade Runner
                        video: false
                        vote_average: 7.9
                        vote_count: 13825
                    total_pages: 4093
                    total_results: 81849
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````