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

# Popular

> This endpoint get a list of movies ordered by popularity.



## OpenAPI

````yaml api-reference/openapi3.json get /3/movie/popular
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/popular:
    get:
      tags:
        - MOVIE LISTS
      summary: Popular
      description: This endpoint get a list of movies ordered by popularity.
      operationId: popular
      parameters:
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/region'
      responses:
        '200':
          description: popular
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=1605
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 21:57:32 GMT
            ETag:
              schema:
                type: string
                example: W/"87a13cd0c2875065645f6608b05ee01b"
            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 e685e9e08c2e4b105f4d86b35da50628.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: gRX9vUKfKK5zCPrIbq2nga8DEfO-V_CbFS2-30ibYwUxAv5FwfpARA==
            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: '23037'
            x-memc-expires:
              schema:
                type: string
                example: '1605'
            x-memc-key:
              schema:
                type: string
                example: f147f269b881c1ffcda165f76b7c7e51
          content:
            application/json:
              schema:
                type: object
                properties:
                  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 (used as a background image in user
                            interfaces).
                        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
                        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.8
                          description: >-
                            A numeric value representing the average rating of
                            the movie, typically on a scale from 1 to 10.
                        vote_count:
                          type: number
                          example: 1873
                          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.8
                        vote_count: 1873
                      - 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.133
                        vote_count: 563
                      - 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.03
                        vote_count: 1746
                      - adult: false
                        backdrop_path: /3sh2UA2Q2l7fihgoj1LhFFPTlIM.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                          - 53
                        id: 912649
                        original_language: en
                        original_title: 'Venom: The Last Dance'
                        overview: >-
                          Eddie and Venom are on the run. Hunted by both of
                          their worlds and with the net closing in, the duo are
                          forced into a devastating decision that will bring the
                          curtains down on Venom and Eddie's last dance.
                        popularity: 3527.162
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.8
                        vote_count: 2078
                      - 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.975
                        vote_count: 719
                      - 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.3
                        vote_count: 384
                      - 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.4
                        vote_count: 882
                      - 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: 177
                      - 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: 6.953
                        vote_count: 1338
                      - 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: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1010581
                        original_language: es
                        original_title: Culpa mía
                        overview: >-
                          Noah must leave her city, boyfriend, and friends to
                          move into William Leister's mansion, the flashy and
                          wealthy husband of her mother Rafaela. As a proud and
                          independent 17 year old, Noah resists living in a
                          mansion surrounded by luxury. However, it is there
                          where she meets Nick, her new stepbrother, and the
                          clash of their strong personalities becomes evident
                          from the very beginning.
                        popularity: 1562.561
                        poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                        release_date: '2023-06-08'
                        title: My Fault
                        video: false
                        vote_average: 7.9
                        vote_count: 3279
                      - 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.7
                        vote_count: 61
                      - 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: /1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 878
                          - 10751
                        id: 1184918
                        original_language: en
                        original_title: The Wild Robot
                        overview: >-
                          After a shipwreck, an intelligent robot called Roz is
                          stranded on an uninhabited island. To survive the
                          harsh environment, Roz bonds with the island's animals
                          and cares for an orphaned baby goose.
                        popularity: 1043.986
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-12'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.377
                        vote_count: 3757
                      - 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.168
                        vote_count: 2932
                      - adult: false
                        backdrop_path: /sQbFupSWM9wUdPj96NZNUOFSP5.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 1000075
                        original_language: fr
                        original_title: 'Largo Winch: Le prix de l''argent'
                        overview: >-
                          Largo Winch, devastated by the kidnapping of his son,
                          realizes that if he finds those responsible for his
                          bankruptcy, maybe he'll see his son again.
                        popularity: 937.027
                        poster_path: /myS41ZUmFvslkT8LeD2irAKxyrf.jpg
                        release_date: '2024-07-31'
                        title: 'The Price of Money: A Largo Winch Adventure'
                        video: false
                        vote_average: 5.8
                        vote_count: 67
                      - 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.708
                        vote_count: 267
                    description: >-
                      An array of movie objects, each containing details about a
                      movie.
                  total_pages:
                    type: number
                    example: 47977
                    description: The total number of pages available for the query results.
                  total_results:
                    type: number
                    example: 959527
                    description: The total number of results found for the query.
              examples:
                popular:
                  value:
                    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.8
                        vote_count: 1873
                      - 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.133
                        vote_count: 563
                      - 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.03
                        vote_count: 1746
                      - adult: false
                        backdrop_path: /3sh2UA2Q2l7fihgoj1LhFFPTlIM.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                          - 53
                        id: 912649
                        original_language: en
                        original_title: 'Venom: The Last Dance'
                        overview: >-
                          Eddie and Venom are on the run. Hunted by both of
                          their worlds and with the net closing in, the duo are
                          forced into a devastating decision that will bring the
                          curtains down on Venom and Eddie's last dance.
                        popularity: 3527.162
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.8
                        vote_count: 2078
                      - 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.975
                        vote_count: 719
                      - 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.3
                        vote_count: 384
                      - 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.4
                        vote_count: 882
                      - 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: 177
                      - 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: 6.953
                        vote_count: 1338
                      - 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: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1010581
                        original_language: es
                        original_title: Culpa mía
                        overview: >-
                          Noah must leave her city, boyfriend, and friends to
                          move into William Leister's mansion, the flashy and
                          wealthy husband of her mother Rafaela. As a proud and
                          independent 17 year old, Noah resists living in a
                          mansion surrounded by luxury. However, it is there
                          where she meets Nick, her new stepbrother, and the
                          clash of their strong personalities becomes evident
                          from the very beginning.
                        popularity: 1562.561
                        poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                        release_date: '2023-06-08'
                        title: My Fault
                        video: false
                        vote_average: 7.9
                        vote_count: 3279
                      - 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.7
                        vote_count: 61
                      - 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: /1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 878
                          - 10751
                        id: 1184918
                        original_language: en
                        original_title: The Wild Robot
                        overview: >-
                          After a shipwreck, an intelligent robot called Roz is
                          stranded on an uninhabited island. To survive the
                          harsh environment, Roz bonds with the island's animals
                          and cares for an orphaned baby goose.
                        popularity: 1043.986
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-12'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.377
                        vote_count: 3757
                      - 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.168
                        vote_count: 2932
                      - adult: false
                        backdrop_path: /sQbFupSWM9wUdPj96NZNUOFSP5.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 1000075
                        original_language: fr
                        original_title: 'Largo Winch: Le prix de l''argent'
                        overview: >-
                          Largo Winch, devastated by the kidnapping of his son,
                          realizes that if he finds those responsible for his
                          bankruptcy, maybe he'll see his son again.
                        popularity: 937.027
                        poster_path: /myS41ZUmFvslkT8LeD2irAKxyrf.jpg
                        release_date: '2024-07-31'
                        title: 'The Price of Money: A Largo Winch Adventure'
                        video: false
                        vote_average: 5.8
                        vote_count: 67
                      - 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.708
                        vote_count: 267
                    total_pages: 47977
                    total_results: 959527
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

````