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

# Similar

> Get the similar movies based on genres and keywords.

**📘Note**

This method only looks for other items based on genres and plot keywords. As such, the results found here are not always going to be 💯. Use it with that in mind.



## OpenAPI

````yaml api-reference/openapi.json get /3/movie/{{movie_id}}/similar
openapi: 3.0.3
info:
  title: Themoviedb API
  description: >-
    Version 3 (stable) of The Movie Database (TMDB) API offers a concise list of
    available methods for movies, TV shows, actors, and images.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
  - url: https://api.themoviedb.org/3
security: []
tags:
  - name: Account
  - name: Authentication
    description: >-
      # How do I generate a session id?


      As outlined in the [getting started
      guide](https://developer.themoviedb.org/docs/getting-started), the basics
      to getting a user authenticated look like this:


      1. **Create a new request token**  

      2. **Get the user to authorize the request token**  

      3. **Create a new session id with the authorized request token**  


      Steps 1 and 3 should be fairly easy to understand, but let's walk through
      each to ensure clarity.


      ## Step 1: Create a request token


      The first step as a developer is to request a new token. This is a
      **temporary token** required to ask the user for permission to access
      their account. This token will automatically expire **after 60 minutes**
      if it's not used.


      ## Step 2: Ask the user for permission


      With a request token in hand, forward your user to the following URL:


      ```

      https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}

      ```


      You can also pass this URL a `redirect_to` parameter, like so:


      ```

      https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}?redirect_to=http://www.yourapp.com/approved

      ```


      Once the user has approved your request token, they will either be
      redirected to the URL you specified in the `redirect_to` parameter or to
      the `/authenticate/allow` path on TMDB. If they aren't redirected to a
      custom URL, the page will also include an `Authentication-Callback`
      header. This header contains the API call for step #3. You can either
      manually generate it or simply use the one we return.


      ## Step 3: Create a session ID


      By calling the **new session method** with the request token that has been
      approved by the user in Step 2, we will return a **new session_id**. This
      session can now be used to write user data. You should treat this key
      **like a password** and keep it secret.


      ## What about guest sessions?


      A **guest session** can be used to rate movies **without** requiring a
      registered TMDB user account. For more information about how to create a
      guest session, see
      [here](https://developer.themoviedb.org/docs/authentication).
  - name: Certification
  - name: Changes
  - name: Collections
  - name: Companies
  - name: Configuration
  - name: Credits
  - name: Discover
  - name: Find
  - name: Genres
  - name: Guest Session
  - name: Keywords
  - name: List
    description: >-
      ## v3 or v4 list? 😕


      You may have noticed that the a v4 version of our list API exists. While
      these v3 list methods continue to work, all of the new features you can
      see on our website are only available if you switch to the v4 lists.


      **What are some of the improvements in v4?**


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/movie/{{movie_id}}/similar:
    parameters:
      - name: movie_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Movies
      summary: Similar
      description: >-
        Get the similar movies based on genres and keywords.


        **📘Note**


        This method only looks for other items based on genres and plot
        keywords. As such, the results found here are not always going to be 💯.
        Use it with that in mind.
      operationId: similar
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Similar
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=21628
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 08 Jan 2025 22:07:53 GMT
            ETag:
              schema:
                type: string
                example: W/"07f7e7b89a5a10698824034c31304169"
            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 ef212a3d9b7a6edd15e1293f0bf1420e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: ksOHagXEPzemYUvhBPh4ZhkOWdJZ92gCht-SX-IwXhWSklTEdQIPLA==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '3497'
            x-memc-expires:
              schema:
                type: string
                example: '21628'
            x-memc-key:
              schema:
                type: string
                example: 6501adc39dc5677ae768200e91388f9a
          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: /bGKHMU4ufiBt2r19g1fsi0u12dT.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 35
                          example:
                            - 35
                        id:
                          type: number
                          example: 27584
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: High School
                        overview:
                          type: string
                          example: >-
                            A high school valedictorian who gets baked with the
                            local stoner finds himself the subject of a drug
                            test. The situation causes him to concoct an
                            ambitious plan to get his entire graduating class to
                            face the same fate, and fail.
                        popularity:
                          type: number
                          example: 12.284
                        poster_path:
                          type: string
                          example: /3pZzS9R1r6qHvstMxmGq54JkFDR.jpg
                        release_date:
                          type: string
                          example: '2010-06-03'
                        title:
                          type: string
                          example: High School
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 5.715
                        vote_count:
                          type: number
                          example: 151
                    example:
                      - adult: false
                        backdrop_path: /bGKHMU4ufiBt2r19g1fsi0u12dT.jpg
                        genre_ids:
                          - 35
                        id: 27584
                        original_language: en
                        original_title: High School
                        overview: >-
                          A high school valedictorian who gets baked with the
                          local stoner finds himself the subject of a drug test.
                          The situation causes him to concoct an ambitious plan
                          to get his entire graduating class to face the same
                          fate, and fail.
                        popularity: 12.284
                        poster_path: /3pZzS9R1r6qHvstMxmGq54JkFDR.jpg
                        release_date: '2010-06-03'
                        title: High School
                        video: false
                        vote_average: 5.715
                        vote_count: 151
                      - adult: false
                        backdrop_path: /eixwufLDvg6oAvReJrOtBoStSwt.jpg
                        genre_ids:
                          - 12
                          - 14
                          - 878
                        id: 27591
                        original_language: en
                        original_title: The People That Time Forgot
                        overview: >-
                          Major Ben McBride organizes a mission to the Antarctic
                          wastes to search for his friend who has been missing
                          in the region for several years. McBride's party find
                          themselves in a world populated by primitive warriors
                          and terrifying prehistoric creatures, all of whom they
                          must evade in order to get back safely
                        popularity: 7.25
                        poster_path: /8IIrlm2CjGCY5UV94lMCNb9HC94.jpg
                        release_date: '1977-07-06'
                        title: The People That Time Forgot
                        video: false
                        vote_average: 5.4
                        vote_count: 76
                      - adult: false
                        backdrop_path: /rydjFBcArIdctIRD9kgRcoIyH6U.jpg
                        genre_ids:
                          - 35
                          - 27
                          - 878
                        id: 27601
                        original_language: en
                        original_title: 'Citizen Toxie: The Toxic Avenger IV'
                        overview: >-
                          A horrific explosion creates a dimensional portal
                          between Tromaville and its dimensional mirror image,
                          Amortville. While the Toxie is trapped in the mirror
                          dimension, Tromaville comes under the control of his
                          evil doppelganger, the Noxious Offender.
                        popularity: 8.948
                        poster_path: /wR4VvqrRd2r9M4GYXPnoV02aUNG.jpg
                        release_date: '2001-11-01'
                        title: 'Citizen Toxie: The Toxic Avenger IV'
                        video: false
                        vote_average: 6.3
                        vote_count: 143
                      - adult: false
                        backdrop_path: /socMWFFL8f5j41tVQ9TO64QkSxB.jpg
                        genre_ids:
                          - 10751
                          - 35
                          - 18
                          - 10402
                          - 10770
                        id: 27621
                        original_language: en
                        original_title: 'The Cheetah Girls: One World'
                        overview: >-
                          Chanel, Dorinda, and Aqua are off to India to star in
                          a Bollywood movie. But when they discover that they
                          will have to compete against each other to get the
                          role in the movie, will the Cheetahs break up again?
                        popularity: 8.095
                        poster_path: /aIxBQvA3h6WbD3LJtXspWL8GOw3.jpg
                        release_date: '2008-08-22'
                        title: 'The Cheetah Girls: One World'
                        video: false
                        vote_average: 6.089
                        vote_count: 327
                      - adult: false
                        backdrop_path: /hjKXHB5bF6uR0ME0GShBtrjj7Mn.jpg
                        genre_ids:
                          - 878
                          - 27
                        id: 27642
                        original_language: en
                        original_title: Queen of Blood
                        overview: >-
                          A spaceship is sent to Mars after an alien distress
                          signal is picked up. They find one survivor, but when
                          a crew member is found drained of blood it's evident
                          they have rescued a bloodsucking monster. Uses footage
                          from Encounter in Space (1963).
                        popularity: 3.727
                        poster_path: /5FylND64Mh6slsOk7PtxmFcAya2.jpg
                        release_date: '1966-03-01'
                        title: Queen of Blood
                        video: false
                        vote_average: 5.3
                        vote_count: 44
                      - adult: false
                        backdrop_path: /bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 878
                        id: 436270
                        original_language: en
                        original_title: Black Adam
                        overview: >-
                          Nearly 5,000 years after he was bestowed with the
                          almighty powers of the Egyptian gods—and imprisoned
                          just as quickly—Black Adam is freed from his earthly
                          tomb, ready to unleash his unique form of justice on
                          the modern world.
                        popularity: 154.055
                        poster_path: /rCtreCr4xiYEWDQTebybolIh6Xe.jpg
                        release_date: '2022-10-19'
                        title: Black Adam
                        video: false
                        vote_average: 6.9
                        vote_count: 6348
                      - adult: false
                        backdrop_path: /h5lp0a9ABTLSm96mKokG7VIXznN.jpg
                        genre_ids:
                          - 878
                        id: 26270
                        original_language: en
                        original_title: Project Moon Base
                        overview: >-
                          In the future (1970) the US sends a mission to the
                          moon to investigate the building of a moon base.
                        popularity: 1.996
                        poster_path: /djG5ljYkjESdyeueMNfdu0VHsL0.jpg
                        release_date: '1953-09-04'
                        title: Project Moon Base
                        video: false
                        vote_average: 2.9
                        vote_count: 25
                      - adult: false
                        backdrop_path: /bClThIcxDD92JdPKKoRY6BQpvnR.jpg
                        genre_ids:
                          - 878
                          - 27
                        id: 26278
                        original_language: en
                        original_title: Quatermass 2
                        overview: >-
                          In England, a group of space scientists led by Bernard
                          Quatermass, who have developed plans for the first
                          Moon colony, learn that a secret, ostensibly
                          government-run, complex of identical design has been
                          built in a remote part of England and is the focus of
                          periodic falls of small, hollow "meteorites"
                          originating in outer space.  Quatermass determines to
                          investigate and uncovers a terrifying extraterrestrial
                          life form which has already begun action to take over
                          the Earth.
                        popularity: 12.252
                        poster_path: /hJJtV5puzYAODgck0JTWVX8zjKu.jpg
                        release_date: '1957-05-24'
                        title: Quatermass 2
                        video: false
                        vote_average: 6.4
                        vote_count: 126
                      - adult: false
                        backdrop_path: /VbhAaAjxFeGJS6ZpdWF2pDkDlI.jpg
                        genre_ids:
                          - 10749
                          - 35
                        id: 26454
                        original_language: en
                        original_title: Deliver Us from Eva
                        overview: >-
                          Eva Dandridge has been in charge of her younger
                          sisters ever since their parents died many years ago.
                          She is a very uptight young woman who constantly
                          meddles in the affairs of her sisters and their
                          significant others. Her brothers-in-law, who are tired
                          of Eva interfering in their lives, decide to set her
                          up with someone so she can leave them alone. They end
                          up paying Ray, the local "playboy," $5,000 to date
                          her. The plan goes by smoothly, but trouble comes when
                          Ray actually falls in love with Eva.
                        popularity: 6.214
                        poster_path: /mkCC7wOJ0C1gfEt44ca25x8xTdL.jpg
                        release_date: '2003-02-07'
                        title: Deliver Us from Eva
                        video: false
                        vote_average: 6.4
                        vote_count: 83
                      - adult: false
                        backdrop_path: /hteOllfbTkD0S7oaEE9zxQYmSsZ.jpg
                        genre_ids:
                          - 12
                          - 14
                          - 16
                          - 10751
                        id: 26505
                        original_language: fr
                        original_title: Arthur et la vengeance de Maltazard
                        overview: >-
                          Arthur answers a distress call from Princess Selenia,
                          who is menaced by the nefarious Maltazard.
                        popularity: 26.396
                        poster_path: /rHCL0HwlQvU01TLRRHZFlvsVEqt.jpg
                        release_date: '2009-11-26'
                        title: Arthur and the Revenge of Maltazard
                        video: false
                        vote_average: 5.7
                        vote_count: 1688
                      - adult: false
                        backdrop_path: /hJQ8SRUp8DgNaqgszlwh9RUUXJB.jpg
                        genre_ids:
                          - 12
                          - 35
                        id: 27472
                        original_language: en
                        original_title: The Odd Couple II
                        overview: >-
                          Brucey, the son of Oscar, calls his father to invite
                          him to his wedding to Felix's daughter next Sunday in
                          California. Oscar and Felix meet again at Los Angeles
                          International Airport and rent a car in order to go to
                          San Malina for the wedding.
                        popularity: 8.886
                        poster_path: /aTajf9LOrL1pok7KnzoHKFJJyWD.jpg
                        release_date: '1998-04-09'
                        title: The Odd Couple II
                        video: false
                        vote_average: 6.3
                        vote_count: 133
                      - adult: false
                        backdrop_path: /mlrFQuAiEltbkiU4GuXWRaiJzkc.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 14
                          - 878
                        id: 27549
                        original_language: en
                        original_title: 'Beastmaster 2: Through the Portal of Time'
                        overview: >-
                          Mark Singer returns as Dar, the warrior who can talk
                          to the beasts. Dar is forced to travel to earth to
                          stop his evil brother from stealing an atomic bomb,
                          and turning their native land from a desert into...
                          well... a desert! Written by Jim Palin
                        popularity: 7.931
                        poster_path: /3bIxjt2uyyeinjU23k115YPhXe1.jpg
                        release_date: '1991-06-08'
                        title: 'Beastmaster 2: Through the Portal of Time'
                        video: false
                        vote_average: 4.664
                        vote_count: 67
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 27
                          - 878
                          - 35
                        id: 948259
                        original_language: en
                        original_title: Carnal Redemption
                        overview: >-
                          Dr Dilf, Nurse Meow and Nurse Spanks are trying to
                          create a cure to the anti-death gas which was
                          accidentally unleashed in the last film. The good
                          doctor and his half dressed nurses are against the
                          clock as a killer is after them and is determined to
                          hunt them down.
                        popularity: 1.445
                        poster_path: /9RHIiM7xkqVNXnVas8ZSlxYOBgy.jpg
                        release_date: ''
                        title: Carnal Redemption
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /707thQazLJiYLBhCrZlRoV05NNL.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 948276
                        original_language: fr
                        original_title: Balle perdue 2
                        overview: >-
                          Having cleared his name, genius mechanic Lino has only
                          one goal in mind: getting revenge on the corrupt cops
                          who killed his brother and his mentor.
                        popularity: 12.712
                        poster_path: /uAeZI1JJbLPq7Bu5dziH7emHeu7.jpg
                        release_date: '2022-11-10'
                        title: Lost Bullet 2
                        video: false
                        vote_average: 6.5
                        vote_count: 367
                      - adult: false
                        backdrop_path: /zQs9C5jcoZkvMRDyO0H4Zk2rJeb.jpg
                        genre_ids:
                          - 35
                          - 10749
                        id: 25451
                        original_language: en
                        original_title: Taking Chances
                        overview: >-
                          When he discovers that an Indian casino is about to be
                          built over the town's historic battlefield, Chase
                          Revere, the self-appointed protector of a small town's
                          rather meager place in American history, joins forces
                          with sexy but dangerous town siren Lucy Shanks to
                          launch an all-out offensive against the project -
                          earning the wrath of the entire town.
                        popularity: 5.17
                        poster_path: /oNyahBbrFSD0cwky3keePg5O6bu.jpg
                        release_date: '2009-11-24'
                        title: Taking Chances
                        video: false
                        vote_average: 4.4
                        vote_count: 41
                      - adult: false
                        backdrop_path: /dGulOAB9N4qJlafWxI4YczXDA4I.jpg
                        genre_ids:
                          - 10751
                          - 12
                          - 16
                          - 14
                          - 28
                          - 878
                        id: 25961
                        original_language: ja
                        original_title: 劇場版ポケットモンスター ダイヤモンド&パール ディアルガVSパルキアVSダークライ
                        overview: >-
                          Ash and friends (this time accompanied by newcomer
                          Dawn) arrive at an idyllic village on their way to
                          their next Pokemon contest, where chaos will soon
                          erupt with the prophecy of two Pokemon Gods (Dialga
                          and Palkia) and the arrival of a mysterious, seemingly
                          deadly Pokemon named Darkrai, which has the power to
                          distort space and time.
                        popularity: 15.102
                        poster_path: /3yuYC7ZOaVUjHlkztjt9fEuCinK.jpg
                        release_date: '2007-07-14'
                        title: 'Pokémon: The Rise of Darkrai'
                        video: false
                        vote_average: 6.9
                        vote_count: 276
                      - adult: false
                        backdrop_path: /8siVEnYXgge4vMgYJcroNhpYxrH.jpg
                        genre_ids:
                          - 878
                          - 53
                        id: 27441
                        original_language: en
                        original_title: Countdown
                        overview: >-
                          Desperate to land a man on the moon before Russia
                          does, NASA hastily preps a would-be spaceman for a
                          mission that would leave him alone in a lunar shelter
                          for a year.
                        popularity: 8.824
                        poster_path: /dsGu8yNR6xyn1lTaiB6bBgqKVCQ.jpg
                        release_date: '1967-08-20'
                        title: Countdown
                        video: false
                        vote_average: 5.7
                        vote_count: 49
                      - adult: false
                        backdrop_path: /sJpbDELfC8VjlRBOOkMJxxWpUg7.jpg
                        genre_ids:
                          - 53
                          - 12
                          - 28
                        id: 27578
                        original_language: en
                        original_title: The Expendables
                        overview: >-
                          Barney Ross leads a band of highly skilled mercenaries
                          including knife enthusiast Lee Christmas, a martial
                          arts expert Yin Yang, heavy weapons specialist Hale
                          Caesar, demolitionist Toll Road, and a loose-cannon
                          sniper Gunner Jensen. When the group is commissioned
                          by the mysterious Mr. Church to assassinate the
                          dictator of a small South American island, Barney and
                          Lee visit the remote locale to scout out their
                          opposition and discover the true nature of the
                          conflict engulfing the city.
                        popularity: 59.954
                        poster_path: /j09ZkH6R4JWVylBcDai1laCmGw7.jpg
                        release_date: '2010-08-03'
                        title: The Expendables
                        video: false
                        vote_average: 6.2
                        vote_count: 7752
                      - adult: false
                        backdrop_path: /nHyri67CN6juBR6hmOefCn9oGf8.jpg
                        genre_ids:
                          - 28
                          - 35
                          - 80
                        id: 27581
                        original_language: en
                        original_title: The Other Guys
                        overview: >-
                          Unlike their heroic counterparts on the force,
                          desk-bound NYPD detectives Gamble and Hoitz garner no
                          headlines as they work day to day. When a seemingly
                          minor case turns out to be a big deal, the two cops
                          get the opportunity to finally prove to their comrades
                          that they have the right stuff.
                        popularity: 28.833
                        poster_path: /wNEHNqo3MgHmj3BUiPSqqq5czcm.jpg
                        release_date: '2010-08-06'
                        title: The Other Guys
                        video: false
                        vote_average: 6.311
                        vote_count: 4180
                      - adult: false
                        backdrop_path: /jpCMO03TRrprpfumd0EwfhohkMN.jpg
                        genre_ids:
                          - 18
                          - 35
                        id: 26367
                        original_language: en
                        original_title: I Can Do Bad All By Myself
                        overview: >-
                          When Madea catches teenage Jennifer and her two
                          younger brothers looting her home, she decides to take
                          matters into her own hands and delivers the young
                          delinquents to the only relative they have: their aunt
                          April. A heavy-drinking nightclub singer who lives off
                          of her married boyfriend, April wants nothing to do
                          with the kids.
                        popularity: 8.628
                        poster_path: /eWgQ40mrijQCiyr4J0mhc8BT8Bp.jpg
                        release_date: '2009-09-11'
                        title: I Can Do Bad All By Myself
                        video: false
                        vote_average: 6.3
                        vote_count: 124
                  total_pages:
                    type: number
                    example: 11055
                  total_results:
                    type: number
                    example: 221090
              examples:
                Similar:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /bGKHMU4ufiBt2r19g1fsi0u12dT.jpg
                        genre_ids:
                          - 35
                        id: 27584
                        original_language: en
                        original_title: High School
                        overview: >-
                          A high school valedictorian who gets baked with the
                          local stoner finds himself the subject of a drug test.
                          The situation causes him to concoct an ambitious plan
                          to get his entire graduating class to face the same
                          fate, and fail.
                        popularity: 12.284
                        poster_path: /3pZzS9R1r6qHvstMxmGq54JkFDR.jpg
                        release_date: '2010-06-03'
                        title: High School
                        video: false
                        vote_average: 5.715
                        vote_count: 151
                      - adult: false
                        backdrop_path: /eixwufLDvg6oAvReJrOtBoStSwt.jpg
                        genre_ids:
                          - 12
                          - 14
                          - 878
                        id: 27591
                        original_language: en
                        original_title: The People That Time Forgot
                        overview: >-
                          Major Ben McBride organizes a mission to the Antarctic
                          wastes to search for his friend who has been missing
                          in the region for several years. McBride's party find
                          themselves in a world populated by primitive warriors
                          and terrifying prehistoric creatures, all of whom they
                          must evade in order to get back safely
                        popularity: 7.25
                        poster_path: /8IIrlm2CjGCY5UV94lMCNb9HC94.jpg
                        release_date: '1977-07-06'
                        title: The People That Time Forgot
                        video: false
                        vote_average: 5.4
                        vote_count: 76
                      - adult: false
                        backdrop_path: /rydjFBcArIdctIRD9kgRcoIyH6U.jpg
                        genre_ids:
                          - 35
                          - 27
                          - 878
                        id: 27601
                        original_language: en
                        original_title: 'Citizen Toxie: The Toxic Avenger IV'
                        overview: >-
                          A horrific explosion creates a dimensional portal
                          between Tromaville and its dimensional mirror image,
                          Amortville. While the Toxie is trapped in the mirror
                          dimension, Tromaville comes under the control of his
                          evil doppelganger, the Noxious Offender.
                        popularity: 8.948
                        poster_path: /wR4VvqrRd2r9M4GYXPnoV02aUNG.jpg
                        release_date: '2001-11-01'
                        title: 'Citizen Toxie: The Toxic Avenger IV'
                        video: false
                        vote_average: 6.3
                        vote_count: 143
                      - adult: false
                        backdrop_path: /socMWFFL8f5j41tVQ9TO64QkSxB.jpg
                        genre_ids:
                          - 10751
                          - 35
                          - 18
                          - 10402
                          - 10770
                        id: 27621
                        original_language: en
                        original_title: 'The Cheetah Girls: One World'
                        overview: >-
                          Chanel, Dorinda, and Aqua are off to India to star in
                          a Bollywood movie. But when they discover that they
                          will have to compete against each other to get the
                          role in the movie, will the Cheetahs break up again?
                        popularity: 8.095
                        poster_path: /aIxBQvA3h6WbD3LJtXspWL8GOw3.jpg
                        release_date: '2008-08-22'
                        title: 'The Cheetah Girls: One World'
                        video: false
                        vote_average: 6.089
                        vote_count: 327
                      - adult: false
                        backdrop_path: /hjKXHB5bF6uR0ME0GShBtrjj7Mn.jpg
                        genre_ids:
                          - 878
                          - 27
                        id: 27642
                        original_language: en
                        original_title: Queen of Blood
                        overview: >-
                          A spaceship is sent to Mars after an alien distress
                          signal is picked up. They find one survivor, but when
                          a crew member is found drained of blood it's evident
                          they have rescued a bloodsucking monster. Uses footage
                          from Encounter in Space (1963).
                        popularity: 3.727
                        poster_path: /5FylND64Mh6slsOk7PtxmFcAya2.jpg
                        release_date: '1966-03-01'
                        title: Queen of Blood
                        video: false
                        vote_average: 5.3
                        vote_count: 44
                      - adult: false
                        backdrop_path: /bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 878
                        id: 436270
                        original_language: en
                        original_title: Black Adam
                        overview: >-
                          Nearly 5,000 years after he was bestowed with the
                          almighty powers of the Egyptian gods—and imprisoned
                          just as quickly—Black Adam is freed from his earthly
                          tomb, ready to unleash his unique form of justice on
                          the modern world.
                        popularity: 154.055
                        poster_path: /rCtreCr4xiYEWDQTebybolIh6Xe.jpg
                        release_date: '2022-10-19'
                        title: Black Adam
                        video: false
                        vote_average: 6.9
                        vote_count: 6348
                      - adult: false
                        backdrop_path: /h5lp0a9ABTLSm96mKokG7VIXznN.jpg
                        genre_ids:
                          - 878
                        id: 26270
                        original_language: en
                        original_title: Project Moon Base
                        overview: >-
                          In the future (1970) the US sends a mission to the
                          moon to investigate the building of a moon base.
                        popularity: 1.996
                        poster_path: /djG5ljYkjESdyeueMNfdu0VHsL0.jpg
                        release_date: '1953-09-04'
                        title: Project Moon Base
                        video: false
                        vote_average: 2.9
                        vote_count: 25
                      - adult: false
                        backdrop_path: /bClThIcxDD92JdPKKoRY6BQpvnR.jpg
                        genre_ids:
                          - 878
                          - 27
                        id: 26278
                        original_language: en
                        original_title: Quatermass 2
                        overview: >-
                          In England, a group of space scientists led by Bernard
                          Quatermass, who have developed plans for the first
                          Moon colony, learn that a secret, ostensibly
                          government-run, complex of identical design has been
                          built in a remote part of England and is the focus of
                          periodic falls of small, hollow "meteorites"
                          originating in outer space.  Quatermass determines to
                          investigate and uncovers a terrifying extraterrestrial
                          life form which has already begun action to take over
                          the Earth.
                        popularity: 12.252
                        poster_path: /hJJtV5puzYAODgck0JTWVX8zjKu.jpg
                        release_date: '1957-05-24'
                        title: Quatermass 2
                        video: false
                        vote_average: 6.4
                        vote_count: 126
                      - adult: false
                        backdrop_path: /VbhAaAjxFeGJS6ZpdWF2pDkDlI.jpg
                        genre_ids:
                          - 10749
                          - 35
                        id: 26454
                        original_language: en
                        original_title: Deliver Us from Eva
                        overview: >-
                          Eva Dandridge has been in charge of her younger
                          sisters ever since their parents died many years ago.
                          She is a very uptight young woman who constantly
                          meddles in the affairs of her sisters and their
                          significant others. Her brothers-in-law, who are tired
                          of Eva interfering in their lives, decide to set her
                          up with someone so she can leave them alone. They end
                          up paying Ray, the local "playboy," $5,000 to date
                          her. The plan goes by smoothly, but trouble comes when
                          Ray actually falls in love with Eva.
                        popularity: 6.214
                        poster_path: /mkCC7wOJ0C1gfEt44ca25x8xTdL.jpg
                        release_date: '2003-02-07'
                        title: Deliver Us from Eva
                        video: false
                        vote_average: 6.4
                        vote_count: 83
                      - adult: false
                        backdrop_path: /hteOllfbTkD0S7oaEE9zxQYmSsZ.jpg
                        genre_ids:
                          - 12
                          - 14
                          - 16
                          - 10751
                        id: 26505
                        original_language: fr
                        original_title: Arthur et la vengeance de Maltazard
                        overview: >-
                          Arthur answers a distress call from Princess Selenia,
                          who is menaced by the nefarious Maltazard.
                        popularity: 26.396
                        poster_path: /rHCL0HwlQvU01TLRRHZFlvsVEqt.jpg
                        release_date: '2009-11-26'
                        title: Arthur and the Revenge of Maltazard
                        video: false
                        vote_average: 5.7
                        vote_count: 1688
                      - adult: false
                        backdrop_path: /hJQ8SRUp8DgNaqgszlwh9RUUXJB.jpg
                        genre_ids:
                          - 12
                          - 35
                        id: 27472
                        original_language: en
                        original_title: The Odd Couple II
                        overview: >-
                          Brucey, the son of Oscar, calls his father to invite
                          him to his wedding to Felix's daughter next Sunday in
                          California. Oscar and Felix meet again at Los Angeles
                          International Airport and rent a car in order to go to
                          San Malina for the wedding.
                        popularity: 8.886
                        poster_path: /aTajf9LOrL1pok7KnzoHKFJJyWD.jpg
                        release_date: '1998-04-09'
                        title: The Odd Couple II
                        video: false
                        vote_average: 6.3
                        vote_count: 133
                      - adult: false
                        backdrop_path: /mlrFQuAiEltbkiU4GuXWRaiJzkc.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 14
                          - 878
                        id: 27549
                        original_language: en
                        original_title: 'Beastmaster 2: Through the Portal of Time'
                        overview: >-
                          Mark Singer returns as Dar, the warrior who can talk
                          to the beasts. Dar is forced to travel to earth to
                          stop his evil brother from stealing an atomic bomb,
                          and turning their native land from a desert into...
                          well... a desert! Written by Jim Palin
                        popularity: 7.931
                        poster_path: /3bIxjt2uyyeinjU23k115YPhXe1.jpg
                        release_date: '1991-06-08'
                        title: 'Beastmaster 2: Through the Portal of Time'
                        video: false
                        vote_average: 4.664
                        vote_count: 67
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 27
                          - 878
                          - 35
                        id: 948259
                        original_language: en
                        original_title: Carnal Redemption
                        overview: >-
                          Dr Dilf, Nurse Meow and Nurse Spanks are trying to
                          create a cure to the anti-death gas which was
                          accidentally unleashed in the last film. The good
                          doctor and his half dressed nurses are against the
                          clock as a killer is after them and is determined to
                          hunt them down.
                        popularity: 1.445
                        poster_path: /9RHIiM7xkqVNXnVas8ZSlxYOBgy.jpg
                        release_date: ''
                        title: Carnal Redemption
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /707thQazLJiYLBhCrZlRoV05NNL.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 948276
                        original_language: fr
                        original_title: Balle perdue 2
                        overview: >-
                          Having cleared his name, genius mechanic Lino has only
                          one goal in mind: getting revenge on the corrupt cops
                          who killed his brother and his mentor.
                        popularity: 12.712
                        poster_path: /uAeZI1JJbLPq7Bu5dziH7emHeu7.jpg
                        release_date: '2022-11-10'
                        title: Lost Bullet 2
                        video: false
                        vote_average: 6.5
                        vote_count: 367
                      - adult: false
                        backdrop_path: /zQs9C5jcoZkvMRDyO0H4Zk2rJeb.jpg
                        genre_ids:
                          - 35
                          - 10749
                        id: 25451
                        original_language: en
                        original_title: Taking Chances
                        overview: >-
                          When he discovers that an Indian casino is about to be
                          built over the town's historic battlefield, Chase
                          Revere, the self-appointed protector of a small town's
                          rather meager place in American history, joins forces
                          with sexy but dangerous town siren Lucy Shanks to
                          launch an all-out offensive against the project -
                          earning the wrath of the entire town.
                        popularity: 5.17
                        poster_path: /oNyahBbrFSD0cwky3keePg5O6bu.jpg
                        release_date: '2009-11-24'
                        title: Taking Chances
                        video: false
                        vote_average: 4.4
                        vote_count: 41
                      - adult: false
                        backdrop_path: /dGulOAB9N4qJlafWxI4YczXDA4I.jpg
                        genre_ids:
                          - 10751
                          - 12
                          - 16
                          - 14
                          - 28
                          - 878
                        id: 25961
                        original_language: ja
                        original_title: 劇場版ポケットモンスター ダイヤモンド&パール ディアルガVSパルキアVSダークライ
                        overview: >-
                          Ash and friends (this time accompanied by newcomer
                          Dawn) arrive at an idyllic village on their way to
                          their next Pokemon contest, where chaos will soon
                          erupt with the prophecy of two Pokemon Gods (Dialga
                          and Palkia) and the arrival of a mysterious, seemingly
                          deadly Pokemon named Darkrai, which has the power to
                          distort space and time.
                        popularity: 15.102
                        poster_path: /3yuYC7ZOaVUjHlkztjt9fEuCinK.jpg
                        release_date: '2007-07-14'
                        title: 'Pokémon: The Rise of Darkrai'
                        video: false
                        vote_average: 6.9
                        vote_count: 276
                      - adult: false
                        backdrop_path: /8siVEnYXgge4vMgYJcroNhpYxrH.jpg
                        genre_ids:
                          - 878
                          - 53
                        id: 27441
                        original_language: en
                        original_title: Countdown
                        overview: >-
                          Desperate to land a man on the moon before Russia
                          does, NASA hastily preps a would-be spaceman for a
                          mission that would leave him alone in a lunar shelter
                          for a year.
                        popularity: 8.824
                        poster_path: /dsGu8yNR6xyn1lTaiB6bBgqKVCQ.jpg
                        release_date: '1967-08-20'
                        title: Countdown
                        video: false
                        vote_average: 5.7
                        vote_count: 49
                      - adult: false
                        backdrop_path: /sJpbDELfC8VjlRBOOkMJxxWpUg7.jpg
                        genre_ids:
                          - 53
                          - 12
                          - 28
                        id: 27578
                        original_language: en
                        original_title: The Expendables
                        overview: >-
                          Barney Ross leads a band of highly skilled mercenaries
                          including knife enthusiast Lee Christmas, a martial
                          arts expert Yin Yang, heavy weapons specialist Hale
                          Caesar, demolitionist Toll Road, and a loose-cannon
                          sniper Gunner Jensen. When the group is commissioned
                          by the mysterious Mr. Church to assassinate the
                          dictator of a small South American island, Barney and
                          Lee visit the remote locale to scout out their
                          opposition and discover the true nature of the
                          conflict engulfing the city.
                        popularity: 59.954
                        poster_path: /j09ZkH6R4JWVylBcDai1laCmGw7.jpg
                        release_date: '2010-08-03'
                        title: The Expendables
                        video: false
                        vote_average: 6.2
                        vote_count: 7752
                      - adult: false
                        backdrop_path: /nHyri67CN6juBR6hmOefCn9oGf8.jpg
                        genre_ids:
                          - 28
                          - 35
                          - 80
                        id: 27581
                        original_language: en
                        original_title: The Other Guys
                        overview: >-
                          Unlike their heroic counterparts on the force,
                          desk-bound NYPD detectives Gamble and Hoitz garner no
                          headlines as they work day to day. When a seemingly
                          minor case turns out to be a big deal, the two cops
                          get the opportunity to finally prove to their comrades
                          that they have the right stuff.
                        popularity: 28.833
                        poster_path: /wNEHNqo3MgHmj3BUiPSqqq5czcm.jpg
                        release_date: '2010-08-06'
                        title: The Other Guys
                        video: false
                        vote_average: 6.311
                        vote_count: 4180
                      - adult: false
                        backdrop_path: /jpCMO03TRrprpfumd0EwfhohkMN.jpg
                        genre_ids:
                          - 18
                          - 35
                        id: 26367
                        original_language: en
                        original_title: I Can Do Bad All By Myself
                        overview: >-
                          When Madea catches teenage Jennifer and her two
                          younger brothers looting her home, she decides to take
                          matters into her own hands and delivers the young
                          delinquents to the only relative they have: their aunt
                          April. A heavy-drinking nightclub singer who lives off
                          of her married boyfriend, April wants nothing to do
                          with the kids.
                        popularity: 8.628
                        poster_path: /eWgQ40mrijQCiyr4J0mhc8BT8Bp.jpg
                        release_date: '2009-09-11'
                        title: I Can Do Bad All By Myself
                        video: false
                        vote_average: 6.3
                        vote_count: 124
                    total_pages: 11055
                    total_results: 221090

````