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

# Now Playing

> This endpoint get a list of movies that are currently in theatres.



## OpenAPI

````yaml api-reference/openapi3.json get /3/movie/now_playing
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/movie/now_playing:
    get:
      tags:
        - MOVIE LISTS
      summary: Now Playing
      description: This endpoint get a list of movies that are currently in theatres.
      operationId: nowPlaying
      parameters:
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/region'
      responses:
        '200':
          description: now playing
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=6091
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 21:55:50 GMT
            ETag:
              schema:
                type: string
                example: W/"05cedeab3516602356a888a5723078f1"
            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 ddeb8679359f033dad405557c487bfdc.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: J1o10wxFF03Dj2BJ9_WrGqeSj0zIZayWT32DD7BCL3t_cXLKsXsMmQ==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '18317'
            x-memc-expires:
              schema:
                type: string
                example: '6091'
            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'
                        description: >-
                          The latest release date of the movies in the results,
                          formatted as "YYYY-MM-DD" (in this case,
                          "2025-01-08").
                      minimum:
                        type: string
                        example: '2024-11-27'
                        description: >-
                          The earliest release date of the movies in the
                          results, formatted as "YYYY-MM-DD" (in this case,
                          "2024-11-27").
                  page:
                    type: number
                    example: 1
                    description: The current page number of the results being displayed.
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                          description: >-
                            A boolean indicating whether the movie is intended
                            for an adult audience (true if it contains adult
                            content, false otherwise).
                        backdrop_path:
                          type: string
                          example: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                          description: >-
                            A string representing the path to the movie's
                            backdrop image.
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 28
                          example:
                            - 28
                            - 12
                            - 18
                          description: >-
                            An array of integers corresponding to genres (e.g.,
                            28 for Action, 12 for Adventure, 18 for Drama).
                        id:
                          type: number
                          example: 558449
                          description: A unique identifier for the movie in the database.
                        original_language:
                          type: string
                          example: en
                          description: >-
                            A string indicating the original language of the
                            movie.
                        original_title:
                          type: string
                          example: Gladiator II
                          description: >-
                            The original title of the movie as it was released
                            initially.
                        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.
                          description: A brief description of the movie's plot
                        popularity:
                          type: number
                          example: 5382.147
                          description: >-
                            A numeric value indicating the popularity of the
                            movie.
                        poster_path:
                          type: string
                          example: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                          description: >-
                            A string representing the path to the movie's poster
                            image
                        release_date:
                          type: string
                          example: '2024-11-05'
                          description: >-
                            The date when the movie is set to be released,
                            formatted as "YYYY-MM-DD".
                        title:
                          type: string
                          example: Gladiator II
                          description: >-
                            The title of the movie as it will be known to the
                            public.
                        video:
                          type: boolean
                          example: false
                          description: >-
                            A boolean value indicating whether there is an
                            associated video (such as a trailer) available for
                            the movie. true means there is a video, whereas
                            false indicates there is none.
                        vote_average:
                          type: number
                          example: 6.757
                          description: >-
                            A numeric value representing the average rating of
                            the movie, typically on a scale from 1 to 10.
                        vote_count:
                          type: number
                          example: 1876
                          description: >-
                            An integer indicating the total number of votes cast
                            for the movie, which contributes to the vote
                            average.
                    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: 5382.147
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.757
                        vote_count: 1876
                      - 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: 5236.256
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.1
                        vote_count: 564
                      - 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: 3805.408
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7.028
                        vote_count: 1749
                      - 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: 3403.343
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.6
                        vote_count: 284
                      - 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: 2873.518
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.974
                        vote_count: 720
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                        id: 762509
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Told in flashbacks, Mufasa is an orphaned cub, lost
                          and alone until he meets a sympathetic lion named
                          Taka—the heir to a royal bloodline. The chance meeting
                          sets in motion a journey of misfits searching for
                          their destiny and working together to evade a
                          threatening and deadly foe.
                        popularity: 2805.337
                        poster_path: /nHhjqeJcaQKOBCd21c1kV2DK5gm.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.332
                        vote_count: 385
                      - adult: false
                        backdrop_path: /uVlUu174iiKhsUGqnOSy46eIIMU.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: 2156.489
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.43
                        vote_count: 883
                      - 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: 2071.24
                        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.8
                        vote_count: 178
                      - 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: 1742.273
                        poster_path: /sjMN7DRi4sGiledsmllEw5HJjPy.jpg
                        release_date: '2024-12-05'
                        title: Carry-On
                        video: false
                        vote_average: 7
                        vote_count: 1340
                      - 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: 1736.39
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.8
                        vote_count: 74
                      - 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: 1633.009
                        poster_path: /sLJqbUymYkLvoNt4E7DG2E4ia6y.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.3
                        vote_count: 220
                      - 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: 1266.034
                        poster_path: /8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg
                        release_date: '2024-12-19'
                        title: Ferry 2
                        video: false
                        vote_average: 5.645
                        vote_count: 62
                      - 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: 1122.811
                        poster_path: /2MeQG5Vq8rUnRAa463BZe5GNhVk.jpg
                        release_date: '2024-10-31'
                        title: Absolution
                        video: false
                        vote_average: 5.9
                        vote_count: 202
                      - 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: 1081.542
                        poster_path: /elKf8Y5yi6Rl6teKsrQg0GAwaQD.jpg
                        release_date: '2024-12-04'
                        title: Werewolves
                        video: false
                        vote_average: 6.1
                        vote_count: 75
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.jpg
                        genre_ids:
                          - 27
                          - 878
                        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: 953.442
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 2933
                      - 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: 895.241
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.7
                        vote_count: 267
                      - 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: 840.621
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.182
                        vote_count: 676
                      - adult: false
                        backdrop_path: /18TSJF1WLA4CkymvVUcKDBwUJ9F.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1034541
                        original_language: en
                        original_title: Terrifier 3
                        overview: >-
                          Five years after surviving Art the Clown's Halloween
                          massacre, Sienna and Jonathan are still struggling to
                          rebuild their shattered lives. As the holiday season
                          approaches, they try to embrace the Christmas spirit
                          and leave the horrors of the past behind. But just
                          when they think they're safe, Art returns, determined
                          to turn their holiday cheer into a new nightmare. The
                          festive season quickly unravels as Art unleashes his
                          twisted brand of terror, proving that no holiday is
                          safe.
                        popularity: 802.614
                        poster_path: /ju10W5gl3PPK3b7TjEmVOZap51I.jpg
                        release_date: '2024-10-09'
                        title: Terrifier 3
                        video: false
                        vote_average: 6.886
                        vote_count: 1333
                      - adult: false
                        backdrop_path: /v9Du2HC3hlknAvGlWhquRbeifwW.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 539972
                        original_language: en
                        original_title: Kraven the Hunter
                        overview: >-
                          Kraven Kravinoff's complex relationship with his
                          ruthless gangster father, Nikolai, starts him down a
                          path of vengeance with brutal consequences, motivating
                          him to become not only the greatest hunter in the
                          world, but also one of its most feared.
                        popularity: 795.977
                        poster_path: /i47IUSsN126K11JUzqQIOi1Mg1M.jpg
                        release_date: '2024-12-11'
                        title: Kraven the Hunter
                        video: false
                        vote_average: 5.9
                        vote_count: 254
                      - adult: false
                        backdrop_path: /4cp40IyTpFfsT2IKpl0YlUkMBIR.jpg
                        genre_ids:
                          - 10749
                          - 35
                          - 18
                        id: 1064213
                        original_language: en
                        original_title: Anora
                        overview: >-
                          A young sex worker from Brooklyn gets her chance at a
                          Cinderella story when she meets and impulsively
                          marries the son of an oligarch. Once the news reaches
                          Russia, her fairytale is threatened as his parents set
                          out to get the marriage annulled.
                        popularity: 682.243
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.9
                        vote_count: 613
                    description: >-
                      An array of movie objects, each containing details about a
                      movie.
                  total_pages:
                    type: number
                    example: 219
                    description: The total number of pages available for the query results.
                  total_results:
                    type: number
                    example: 4365
                    description: The total number of results found for the query.
              examples:
                now 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: 5382.147
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.757
                        vote_count: 1876
                      - 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: 5236.256
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.1
                        vote_count: 564
                      - 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: 3805.408
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7.028
                        vote_count: 1749
                      - 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: 3403.343
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.6
                        vote_count: 284
                      - 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: 2873.518
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.974
                        vote_count: 720
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                        id: 762509
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Told in flashbacks, Mufasa is an orphaned cub, lost
                          and alone until he meets a sympathetic lion named
                          Taka—the heir to a royal bloodline. The chance meeting
                          sets in motion a journey of misfits searching for
                          their destiny and working together to evade a
                          threatening and deadly foe.
                        popularity: 2805.337
                        poster_path: /nHhjqeJcaQKOBCd21c1kV2DK5gm.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.332
                        vote_count: 385
                      - adult: false
                        backdrop_path: /uVlUu174iiKhsUGqnOSy46eIIMU.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: 2156.489
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.43
                        vote_count: 883
                      - 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: 2071.24
                        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.8
                        vote_count: 178
                      - 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: 1742.273
                        poster_path: /sjMN7DRi4sGiledsmllEw5HJjPy.jpg
                        release_date: '2024-12-05'
                        title: Carry-On
                        video: false
                        vote_average: 7
                        vote_count: 1340
                      - 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: 1736.39
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.8
                        vote_count: 74
                      - 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: 1633.009
                        poster_path: /sLJqbUymYkLvoNt4E7DG2E4ia6y.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.3
                        vote_count: 220
                      - 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: 1266.034
                        poster_path: /8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg
                        release_date: '2024-12-19'
                        title: Ferry 2
                        video: false
                        vote_average: 5.645
                        vote_count: 62
                      - 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: 1122.811
                        poster_path: /2MeQG5Vq8rUnRAa463BZe5GNhVk.jpg
                        release_date: '2024-10-31'
                        title: Absolution
                        video: false
                        vote_average: 5.9
                        vote_count: 202
                      - 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: 1081.542
                        poster_path: /elKf8Y5yi6Rl6teKsrQg0GAwaQD.jpg
                        release_date: '2024-12-04'
                        title: Werewolves
                        video: false
                        vote_average: 6.1
                        vote_count: 75
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.jpg
                        genre_ids:
                          - 27
                          - 878
                        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: 953.442
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 2933
                      - 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: 895.241
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.7
                        vote_count: 267
                      - 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: 840.621
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.182
                        vote_count: 676
                      - adult: false
                        backdrop_path: /18TSJF1WLA4CkymvVUcKDBwUJ9F.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1034541
                        original_language: en
                        original_title: Terrifier 3
                        overview: >-
                          Five years after surviving Art the Clown's Halloween
                          massacre, Sienna and Jonathan are still struggling to
                          rebuild their shattered lives. As the holiday season
                          approaches, they try to embrace the Christmas spirit
                          and leave the horrors of the past behind. But just
                          when they think they're safe, Art returns, determined
                          to turn their holiday cheer into a new nightmare. The
                          festive season quickly unravels as Art unleashes his
                          twisted brand of terror, proving that no holiday is
                          safe.
                        popularity: 802.614
                        poster_path: /ju10W5gl3PPK3b7TjEmVOZap51I.jpg
                        release_date: '2024-10-09'
                        title: Terrifier 3
                        video: false
                        vote_average: 6.886
                        vote_count: 1333
                      - adult: false
                        backdrop_path: /v9Du2HC3hlknAvGlWhquRbeifwW.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 539972
                        original_language: en
                        original_title: Kraven the Hunter
                        overview: >-
                          Kraven Kravinoff's complex relationship with his
                          ruthless gangster father, Nikolai, starts him down a
                          path of vengeance with brutal consequences, motivating
                          him to become not only the greatest hunter in the
                          world, but also one of its most feared.
                        popularity: 795.977
                        poster_path: /i47IUSsN126K11JUzqQIOi1Mg1M.jpg
                        release_date: '2024-12-11'
                        title: Kraven the Hunter
                        video: false
                        vote_average: 5.9
                        vote_count: 254
                      - adult: false
                        backdrop_path: /4cp40IyTpFfsT2IKpl0YlUkMBIR.jpg
                        genre_ids:
                          - 10749
                          - 35
                          - 18
                        id: 1064213
                        original_language: en
                        original_title: Anora
                        overview: >-
                          A young sex worker from Brooklyn gets her chance at a
                          Cinderella story when she meets and impulsively
                          marries the son of an oligarch. Once the news reaches
                          Russia, her fairytale is threatened as his parents set
                          out to get the marriage annulled.
                        popularity: 682.243
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.9
                        vote_count: 613
                    total_pages: 219
                    total_results: 4365
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    page:
      name: page
      in: query
      description: >-
        Indicates which page of results to return. Default is the first page
        (1).
      schema:
        type: integer
        example: 1
    region:
      name: region
      in: query
      description: >-
        This is the geographical area or country that can be used to filter
        results based on regional availability.
      schema:
        type: string
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````