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

# Now Playing

> Get a list of movies that are currently in theatres.

**📘Note**

This call is really just a discover call behind the scenes. If you would like to tweak any of the default filters head over and read about discover.



## OpenAPI

````yaml api-reference/openapi.json get /3/movie/now_playing
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/now_playing:
    get:
      tags:
        - Movie Lists
      summary: Now Playing
      description: >-
        Get a list of movies that are currently in theatres.


        **📘Note**


        This call is really just a discover call behind the scenes. If you would
        like to tweak any of the default filters head over and read about
        discover.
      operationId: nowPlaying
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Playing
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=8447
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 07 Jan 2025 15:20:58 GMT
            ETag:
              schema:
                type: string
                example: W/"b2350525f6cc8a5d9204f63d51a95295"
            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 d464747d443d7370c69239599bc83b4a.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: SOOv3dhutv9oidl-CyBKCJ9A1UaXSgpBBsqPdlJ5E14cmJMgQjOTOg==
            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: '17199'
            x-memc-expires:
              schema:
                type: string
                example: '8447'
            x-memc-key:
              schema:
                type: string
                example: 6804ac2963faf18883efa2932266ec34
          content:
            application/json:
              schema:
                type: object
                properties:
                  dates:
                    type: object
                    properties:
                      maximum:
                        type: string
                        example: '2025-01-08'
                      minimum:
                        type: string
                        example: '2024-11-27'
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 28
                          example:
                            - 28
                            - 12
                            - 18
                        id:
                          type: number
                          example: 558449
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: Gladiator II
                        overview:
                          type: string
                          example: >-
                            Years after witnessing the death of the revered hero
                            Maximus at the hands of his uncle, Lucius is forced
                            to enter the Colosseum after his home is conquered
                            by the tyrannical Emperors who now lead Rome with an
                            iron fist. With rage in his heart and the future of
                            the Empire at stake, Lucius must look to his past to
                            find strength and honor to return the glory of Rome
                            to its people.
                        popularity:
                          type: number
                          example: 4584.535
                        poster_path:
                          type: string
                          example: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date:
                          type: string
                          example: '2024-11-05'
                        title:
                          type: string
                          example: Gladiator II
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 6.764
                        vote_count:
                          type: number
                          example: 2067
                    example:
                      - adult: false
                        backdrop_path: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 558449
                        original_language: en
                        original_title: Gladiator II
                        overview: >-
                          Years after witnessing the death of the revered hero
                          Maximus at the hands of his uncle, Lucius is forced to
                          enter the Colosseum after his home is conquered by the
                          tyrannical Emperors who now lead Rome with an iron
                          fist. With rage in his heart and the future of the
                          Empire at stake, Lucius must look to his past to find
                          strength and honor to return the glory of Rome to its
                          people.
                        popularity: 4584.535
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.764
                        vote_count: 2067
                      - adult: false
                        backdrop_path: /2C4js9DGb3GzoZeef1ZzhSGLXRO.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1156593
                        original_language: es
                        original_title: Culpa tuya
                        overview: >-
                          The love between Noah and Nick seems unwavering
                          despite their parents' attempts to separate them. But
                          his job and her entry into college open up their lives
                          to new relationships that will shake the foundations
                          of both their relationship and the Leister family
                          itself.
                        popularity: 3327.447
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.1
                        vote_count: 706
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        original_language: en
                        original_title: Sonic the Hedgehog 3
                        overview: >-
                          Sonic, Knuckles, and Tails reunite against a powerful
                          new adversary, Shadow, a mysterious villain with
                          powers unlike anything they have faced before. With
                          their abilities outmatched in every way, Team Sonic
                          must seek out an unlikely alliance in hopes of
                          stopping Shadow and protecting the planet.
                        popularity: 3668.314
                        poster_path: /x7NPbBlrvFRJrpinBSRlMOOUWom.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.7
                        vote_count: 368
                      - adult: false
                        backdrop_path: /cjEcqdRdPQJhYre3HUAc5538Gk8.jpg
                        genre_ids:
                          - 28
                          - 14
                          - 35
                        id: 845781
                        original_language: en
                        original_title: Red One
                        overview: >-
                          After Santa Claus (codename: Red One) is kidnapped,
                          the North Pole's Head of Security must team up with
                          the world's most infamous tracker in a globe-trotting,
                          action-packed mission to save Christmas.
                        popularity: 2605.596
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7
                        vote_count: 1864
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                        id: 762509
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Mufasa, a cub lost and alone, meets a sympathetic lion
                          named Taka, the heir to a royal bloodline. The chance
                          meeting sets in motion an expansive journey of a group
                          of misfits searching for their destiny.
                        popularity: 2975.426
                        poster_path: /lurEK87kukWNaHd0zYnsi3yzJrs.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.4
                        vote_count: 479
                      - adult: false
                        backdrop_path: /A6vAMO3myroRfBwSZetY4GVqaW4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 28
                          - 12
                        id: 839033
                        original_language: en
                        original_title: 'The Lord of the Rings: The War of the Rohirrim'
                        overview: >-
                          183 years before the events chronicled in the original
                          trilogy, a sudden attack by Wulf, a clever and
                          ruthless Dunlending lord seeking vengeance for the
                          death of his father, forces Helm Hammerhand and his
                          people to make a daring last stand in the ancient
                          stronghold of the Hornburg. Finding herself in an
                          increasingly desperate situation, Héra, the daughter
                          of Helm, must summon the will to lead the resistance
                          against a deadly enemy intent on their total
                          destruction.
                        popularity: 2669.031
                        poster_path: /hE9SAMyMSUGAPsHUGdyl6irv11v.jpg
                        release_date: '2024-12-05'
                        title: 'The Lord of the Rings: The War of the Rohirrim'
                        video: false
                        vote_average: 6.6
                        vote_count: 240
                      - adult: false
                        backdrop_path: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        original_language: en
                        original_title: Wicked
                        overview: >-
                          In the land of Oz, ostracized and misunderstood
                          green-skinned Elphaba is forced to share a room with
                          the popular aristocrat Glinda at Shiz University, and
                          the two's unlikely friendship is tested as they begin
                          to fulfill their respective destinies as Glinda the
                          Good and the Wicked Witch of the West.
                        popularity: 2606.28
                        poster_path: /2E1x1qcHqGZcYuYi4PzVZjzg8IV.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.4
                        vote_count: 1042
                      - adult: false
                        backdrop_path: /tElnmtQ6yz1PjN1kePNl8yMSb59.jpg
                        genre_ids:
                          - 16
                          - 12
                          - 10751
                          - 35
                        id: 1241982
                        original_language: en
                        original_title: Moana 2
                        overview: >-
                          After receiving an unexpected call from her wayfinding
                          ancestors, Moana journeys alongside Maui and a new
                          crew to the far seas of Oceania and into dangerous,
                          long-lost waters for an adventure unlike anything
                          she's ever faced.
                        popularity: 2170.808
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.989
                        vote_count: 770
                      - adult: false
                        backdrop_path: /fzjH7kt1017R9EckLDmWmH5pGhD.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 53
                        id: 970450
                        original_language: en
                        original_title: Werewolves
                        overview: >-
                          A year after a supermoon’s light activated a dormant
                          gene, transforming humans into bloodthirsty werewolves
                          and causing nearly a billion deaths, the nightmare
                          resurfaces as the supermoon rises again. Two
                          scientists attempt to stop the mutation but fail,
                          leaving those exposed to the moonlight to once again
                          become feral werewolves. Chaos engulfs the streets as
                          the scientists struggle to reach one of their family
                          homes, now under siege by the savage creatures.
                        popularity: 1970.484
                        poster_path: /cRTctVlwvMdXVsaYbX5qfkittDP.jpg
                        release_date: '2024-12-04'
                        title: Werewolves
                        video: false
                        vote_average: 6
                        vote_count: 113
                      - adult: false
                        backdrop_path: /au3o84ub27qTZiMiEc9UYzN74V3.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 1035048
                        original_language: en
                        original_title: Elevation
                        overview: >-
                          A single father and two women venture from the safety
                          of their homes to face monstrous creatures to save the
                          life of a young boy.
                        popularity: 1885.874
                        poster_path: /9knPvD6GLtl1w4pamRomyQKHXyj.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.2
                        vote_count: 268
                      - adult: false
                        backdrop_path: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                        id: 1043905
                        original_language: en
                        original_title: Dirty Angels
                        overview: >-
                          During the United States' 2021 withdrawal from
                          Afghanistan, a group of female soldiers posing as
                          medical relief are sent back in to rescue a group of
                          kidnapped teenagers caught between ISIS and the
                          Taliban.
                        popularity: 1579.998
                        poster_path: /1y3TG8N8zwwMxqh0qzdyDs3IyCq.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.548
                        vote_count: 94
                      - adult: false
                        backdrop_path: /rhc8Mtuo3Kh8CndnlmTNMF8o9pU.jpg
                        genre_ids:
                          - 28
                          - 53
                        id: 1005331
                        original_language: en
                        original_title: Carry-On
                        overview: >-
                          An airport security officer races to outsmart a
                          mysterious traveler forcing him to let a dangerous
                          item slip onto a Christmas Eve flight.
                        popularity: 1463.608
                        poster_path: /sjMN7DRi4sGiledsmllEw5HJjPy.jpg
                        release_date: '2024-12-05'
                        title: Carry-On
                        video: false
                        vote_average: 6.964
                        vote_count: 1469
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.jpg
                        genre_ids:
                          - 27
                          - 878
                          - 28
                        id: 933260
                        original_language: en
                        original_title: The Substance
                        overview: >-
                          A fading celebrity decides to use a black market drug,
                          a cell-replicating substance that temporarily creates
                          a younger, better version of herself.
                        popularity: 1228.066
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 3043
                      - adult: false
                        backdrop_path: /A28EE0vgHrB0OdoxWWMfgfyEoYn.jpg
                        genre_ids:
                          - 80
                          - 53
                          - 28
                        id: 1276945
                        original_language: nl
                        original_title: Ferry 2
                        overview: >-
                          After losing his drug empire, Ferry Bouman has found a
                          measure of peace away from Brabant's criminal
                          underworld — until his past catches up to him.
                        popularity: 1039.681
                        poster_path: /8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg
                        release_date: '2024-12-19'
                        title: Ferry 2
                        video: false
                        vote_average: 5.627
                        vote_count: 75
                      - adult: false
                        backdrop_path: /6lE2e6j8qbtQR8aHxQNJlwxdmKV.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 974453
                        original_language: en
                        original_title: Absolution
                        overview: >-
                          An aging ex-boxer gangster working as muscle for a
                          Boston crime boss receives an upsetting diagnosis. 
                          Despite a faltering memory, he attempts to rectify the
                          sins of his past and reconnect with his estranged
                          children. He is determined to leave a positive legacy
                          for his grandson, but the criminal underworld isn’t
                          done with him and won’t loosen their grip willingly.
                        popularity: 961.87
                        poster_path: /2MeQG5Vq8rUnRAa463BZe5GNhVk.jpg
                        release_date: '2024-10-31'
                        title: Absolution
                        video: false
                        vote_average: 5.85
                        vote_count: 224
                      - adult: false
                        backdrop_path: /ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1138194
                        original_language: en
                        original_title: Heretic
                        overview: >-
                          Two young missionaries are forced to prove their faith
                          when they knock on the wrong door and are greeted by a
                          diabolical Mr. Reed, becoming ensnared in his deadly
                          game of cat-and-mouse.
                        popularity: 867.419
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.206
                        vote_count: 751
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 27
                          - 14
                          - 18
                        id: 426063
                        original_language: en
                        original_title: Nosferatu
                        overview: >-
                          A gothic tale of obsession between a haunted young
                          woman and the terrifying vampire infatuated with her,
                          causing untold horror in its wake.
                        popularity: 1034.597
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.809
                        vote_count: 559
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 10749
                          - 18
                        id: 1252309
                        original_language: es
                        original_title: Pídeme lo que quieras
                        overview: >-
                          After his father's death, Eric Zimmerman travels to
                          Spain to oversee his company's branches. In Madrid, he
                          falls for Judith and engage in an intense, erotic
                          relationship full of exploration. However, Eric fears
                          his secret may end their affair.
                        popularity: 668.055
                        poster_path: /76qnVxU2rPdVvipBN3DPQH6fVYB.jpg
                        release_date: '2024-11-29'
                        title: Ask Me What You Want
                        video: false
                        vote_average: 5.571
                        vote_count: 14
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 792.319
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-01-30'
                        title: Flow
                        video: false
                        vote_average: 8.4
                        vote_count: 540
                      - adult: false
                        backdrop_path: /evFChfYeD2LqobEJf8iQsrYcGTw.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 1182387
                        original_language: en
                        original_title: Armor
                        overview: >-
                          Armored truck security guard James Brody is working
                          with his son Casey transporting millions of dollars
                          between banks when a team of thieves led by Rook
                          orchestrate a takeover of their truck to seize the
                          riches. Following a violent car chase, Rook soon has
                          the armored truck surrounded and James and Casey find
                          themselves cornered onto a decrepit bridge.
                        popularity: 673.063
                        poster_path: /pnXLFioDeftqjlCVlRmXvIdMsdP.jpg
                        release_date: '2024-10-30'
                        title: Armor
                        video: false
                        vote_average: 5.6
                        vote_count: 120
                  total_pages:
                    type: number
                    example: 226
                  total_results:
                    type: number
                    example: 4514
              examples:
                Playing:
                  value:
                    dates:
                      maximum: '2025-01-08'
                      minimum: '2024-11-27'
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 558449
                        original_language: en
                        original_title: Gladiator II
                        overview: >-
                          Years after witnessing the death of the revered hero
                          Maximus at the hands of his uncle, Lucius is forced to
                          enter the Colosseum after his home is conquered by the
                          tyrannical Emperors who now lead Rome with an iron
                          fist. With rage in his heart and the future of the
                          Empire at stake, Lucius must look to his past to find
                          strength and honor to return the glory of Rome to its
                          people.
                        popularity: 4584.535
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.764
                        vote_count: 2067
                      - adult: false
                        backdrop_path: /2C4js9DGb3GzoZeef1ZzhSGLXRO.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1156593
                        original_language: es
                        original_title: Culpa tuya
                        overview: >-
                          The love between Noah and Nick seems unwavering
                          despite their parents' attempts to separate them. But
                          his job and her entry into college open up their lives
                          to new relationships that will shake the foundations
                          of both their relationship and the Leister family
                          itself.
                        popularity: 3327.447
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.1
                        vote_count: 706
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        original_language: en
                        original_title: Sonic the Hedgehog 3
                        overview: >-
                          Sonic, Knuckles, and Tails reunite against a powerful
                          new adversary, Shadow, a mysterious villain with
                          powers unlike anything they have faced before. With
                          their abilities outmatched in every way, Team Sonic
                          must seek out an unlikely alliance in hopes of
                          stopping Shadow and protecting the planet.
                        popularity: 3668.314
                        poster_path: /x7NPbBlrvFRJrpinBSRlMOOUWom.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.7
                        vote_count: 368
                      - adult: false
                        backdrop_path: /cjEcqdRdPQJhYre3HUAc5538Gk8.jpg
                        genre_ids:
                          - 28
                          - 14
                          - 35
                        id: 845781
                        original_language: en
                        original_title: Red One
                        overview: >-
                          After Santa Claus (codename: Red One) is kidnapped,
                          the North Pole's Head of Security must team up with
                          the world's most infamous tracker in a globe-trotting,
                          action-packed mission to save Christmas.
                        popularity: 2605.596
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7
                        vote_count: 1864
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                        id: 762509
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Mufasa, a cub lost and alone, meets a sympathetic lion
                          named Taka, the heir to a royal bloodline. The chance
                          meeting sets in motion an expansive journey of a group
                          of misfits searching for their destiny.
                        popularity: 2975.426
                        poster_path: /lurEK87kukWNaHd0zYnsi3yzJrs.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.4
                        vote_count: 479
                      - adult: false
                        backdrop_path: /A6vAMO3myroRfBwSZetY4GVqaW4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 28
                          - 12
                        id: 839033
                        original_language: en
                        original_title: 'The Lord of the Rings: The War of the Rohirrim'
                        overview: >-
                          183 years before the events chronicled in the original
                          trilogy, a sudden attack by Wulf, a clever and
                          ruthless Dunlending lord seeking vengeance for the
                          death of his father, forces Helm Hammerhand and his
                          people to make a daring last stand in the ancient
                          stronghold of the Hornburg. Finding herself in an
                          increasingly desperate situation, Héra, the daughter
                          of Helm, must summon the will to lead the resistance
                          against a deadly enemy intent on their total
                          destruction.
                        popularity: 2669.031
                        poster_path: /hE9SAMyMSUGAPsHUGdyl6irv11v.jpg
                        release_date: '2024-12-05'
                        title: 'The Lord of the Rings: The War of the Rohirrim'
                        video: false
                        vote_average: 6.6
                        vote_count: 240
                      - adult: false
                        backdrop_path: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        original_language: en
                        original_title: Wicked
                        overview: >-
                          In the land of Oz, ostracized and misunderstood
                          green-skinned Elphaba is forced to share a room with
                          the popular aristocrat Glinda at Shiz University, and
                          the two's unlikely friendship is tested as they begin
                          to fulfill their respective destinies as Glinda the
                          Good and the Wicked Witch of the West.
                        popularity: 2606.28
                        poster_path: /2E1x1qcHqGZcYuYi4PzVZjzg8IV.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.4
                        vote_count: 1042
                      - adult: false
                        backdrop_path: /tElnmtQ6yz1PjN1kePNl8yMSb59.jpg
                        genre_ids:
                          - 16
                          - 12
                          - 10751
                          - 35
                        id: 1241982
                        original_language: en
                        original_title: Moana 2
                        overview: >-
                          After receiving an unexpected call from her wayfinding
                          ancestors, Moana journeys alongside Maui and a new
                          crew to the far seas of Oceania and into dangerous,
                          long-lost waters for an adventure unlike anything
                          she's ever faced.
                        popularity: 2170.808
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.989
                        vote_count: 770
                      - adult: false
                        backdrop_path: /fzjH7kt1017R9EckLDmWmH5pGhD.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 53
                        id: 970450
                        original_language: en
                        original_title: Werewolves
                        overview: >-
                          A year after a supermoon’s light activated a dormant
                          gene, transforming humans into bloodthirsty werewolves
                          and causing nearly a billion deaths, the nightmare
                          resurfaces as the supermoon rises again. Two
                          scientists attempt to stop the mutation but fail,
                          leaving those exposed to the moonlight to once again
                          become feral werewolves. Chaos engulfs the streets as
                          the scientists struggle to reach one of their family
                          homes, now under siege by the savage creatures.
                        popularity: 1970.484
                        poster_path: /cRTctVlwvMdXVsaYbX5qfkittDP.jpg
                        release_date: '2024-12-04'
                        title: Werewolves
                        video: false
                        vote_average: 6
                        vote_count: 113
                      - adult: false
                        backdrop_path: /au3o84ub27qTZiMiEc9UYzN74V3.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 1035048
                        original_language: en
                        original_title: Elevation
                        overview: >-
                          A single father and two women venture from the safety
                          of their homes to face monstrous creatures to save the
                          life of a young boy.
                        popularity: 1885.874
                        poster_path: /9knPvD6GLtl1w4pamRomyQKHXyj.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.2
                        vote_count: 268
                      - adult: false
                        backdrop_path: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                        id: 1043905
                        original_language: en
                        original_title: Dirty Angels
                        overview: >-
                          During the United States' 2021 withdrawal from
                          Afghanistan, a group of female soldiers posing as
                          medical relief are sent back in to rescue a group of
                          kidnapped teenagers caught between ISIS and the
                          Taliban.
                        popularity: 1579.998
                        poster_path: /1y3TG8N8zwwMxqh0qzdyDs3IyCq.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.548
                        vote_count: 94
                      - adult: false
                        backdrop_path: /rhc8Mtuo3Kh8CndnlmTNMF8o9pU.jpg
                        genre_ids:
                          - 28
                          - 53
                        id: 1005331
                        original_language: en
                        original_title: Carry-On
                        overview: >-
                          An airport security officer races to outsmart a
                          mysterious traveler forcing him to let a dangerous
                          item slip onto a Christmas Eve flight.
                        popularity: 1463.608
                        poster_path: /sjMN7DRi4sGiledsmllEw5HJjPy.jpg
                        release_date: '2024-12-05'
                        title: Carry-On
                        video: false
                        vote_average: 6.964
                        vote_count: 1469
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.jpg
                        genre_ids:
                          - 27
                          - 878
                          - 28
                        id: 933260
                        original_language: en
                        original_title: The Substance
                        overview: >-
                          A fading celebrity decides to use a black market drug,
                          a cell-replicating substance that temporarily creates
                          a younger, better version of herself.
                        popularity: 1228.066
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 3043
                      - adult: false
                        backdrop_path: /A28EE0vgHrB0OdoxWWMfgfyEoYn.jpg
                        genre_ids:
                          - 80
                          - 53
                          - 28
                        id: 1276945
                        original_language: nl
                        original_title: Ferry 2
                        overview: >-
                          After losing his drug empire, Ferry Bouman has found a
                          measure of peace away from Brabant's criminal
                          underworld — until his past catches up to him.
                        popularity: 1039.681
                        poster_path: /8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg
                        release_date: '2024-12-19'
                        title: Ferry 2
                        video: false
                        vote_average: 5.627
                        vote_count: 75
                      - adult: false
                        backdrop_path: /6lE2e6j8qbtQR8aHxQNJlwxdmKV.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 974453
                        original_language: en
                        original_title: Absolution
                        overview: >-
                          An aging ex-boxer gangster working as muscle for a
                          Boston crime boss receives an upsetting diagnosis. 
                          Despite a faltering memory, he attempts to rectify the
                          sins of his past and reconnect with his estranged
                          children. He is determined to leave a positive legacy
                          for his grandson, but the criminal underworld isn’t
                          done with him and won’t loosen their grip willingly.
                        popularity: 961.87
                        poster_path: /2MeQG5Vq8rUnRAa463BZe5GNhVk.jpg
                        release_date: '2024-10-31'
                        title: Absolution
                        video: false
                        vote_average: 5.85
                        vote_count: 224
                      - adult: false
                        backdrop_path: /ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1138194
                        original_language: en
                        original_title: Heretic
                        overview: >-
                          Two young missionaries are forced to prove their faith
                          when they knock on the wrong door and are greeted by a
                          diabolical Mr. Reed, becoming ensnared in his deadly
                          game of cat-and-mouse.
                        popularity: 867.419
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.206
                        vote_count: 751
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 27
                          - 14
                          - 18
                        id: 426063
                        original_language: en
                        original_title: Nosferatu
                        overview: >-
                          A gothic tale of obsession between a haunted young
                          woman and the terrifying vampire infatuated with her,
                          causing untold horror in its wake.
                        popularity: 1034.597
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.809
                        vote_count: 559
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 10749
                          - 18
                        id: 1252309
                        original_language: es
                        original_title: Pídeme lo que quieras
                        overview: >-
                          After his father's death, Eric Zimmerman travels to
                          Spain to oversee his company's branches. In Madrid, he
                          falls for Judith and engage in an intense, erotic
                          relationship full of exploration. However, Eric fears
                          his secret may end their affair.
                        popularity: 668.055
                        poster_path: /76qnVxU2rPdVvipBN3DPQH6fVYB.jpg
                        release_date: '2024-11-29'
                        title: Ask Me What You Want
                        video: false
                        vote_average: 5.571
                        vote_count: 14
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 792.319
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-01-30'
                        title: Flow
                        video: false
                        vote_average: 8.4
                        vote_count: 540
                      - adult: false
                        backdrop_path: /evFChfYeD2LqobEJf8iQsrYcGTw.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 1182387
                        original_language: en
                        original_title: Armor
                        overview: >-
                          Armored truck security guard James Brody is working
                          with his son Casey transporting millions of dollars
                          between banks when a team of thieves led by Rook
                          orchestrate a takeover of their truck to seize the
                          riches. Following a violent car chase, Rook soon has
                          the armored truck surrounded and James and Casey find
                          themselves cornered onto a decrepit bridge.
                        popularity: 673.063
                        poster_path: /pnXLFioDeftqjlCVlRmXvIdMsdP.jpg
                        release_date: '2024-10-30'
                        title: Armor
                        video: false
                        vote_average: 5.6
                        vote_count: 120
                    total_pages: 226
                    total_results: 4514

````