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

# Movies

> Get the trending movies on TMDB.



## OpenAPI

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


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


      1. **Create a new request token**  

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

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


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


      ## Step 1: Create a request token


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


      ## Step 2: Ask the user for permission


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


      ```

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

      ```


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


      ```

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

      ```


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


      ## Step 3: Create a session ID


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


      ## What about guest sessions?


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


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


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


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/trending/movie/{{time_window}}:
    parameters:
      - name: time_window
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Trending
      summary: Movies
      description: Get the trending movies on TMDB.
      operationId: movies
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
      responses:
        '200':
          description: Movies
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=162
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 15:35:07 GMT
            ETag:
              schema:
                type: string
                example: W/"2a2d44feec0da208917701430fdc12e1"
            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 dd11c9768f8b06d6759fe07ff69421ce.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: aikwlTu8WFoxTj7Oi1TD9zyx6sr8Tebc4Eh8PGtTMd4EPc8GrpSpzA==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '438'
            x-memc-expires:
              schema:
                type: string
                example: '162'
            x-memc-key:
              schema:
                type: string
                example: 913424cf2877f705324786bd19bafab6
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 18
                          example:
                            - 18
                            - 10749
                            - 14
                        id:
                          type: number
                          example: 402431
                        media_type:
                          type: string
                          example: movie
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: Wicked
                        overview:
                          type: string
                          example: >-
                            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:
                          type: number
                          example: 2260.092
                        poster_path:
                          type: string
                          example: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date:
                          type: string
                          example: '2024-11-20'
                        title:
                          type: string
                          example: Wicked
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.3
                        vote_count:
                          type: number
                          example: 1144
                    example:
                      - adult: false
                        backdrop_path: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        media_type: movie
                        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: 2260.092
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.3
                        vote_count: 1144
                      - adult: false
                        backdrop_path: /dMloNvayweggmvv0UD0iOJIkkbH.jpg
                        genre_ids:
                          - 53
                          - 18
                          - 80
                          - 28
                        id: 1261501
                        media_type: movie
                        original_language: fr
                        original_title: Ad Vitam
                        overview: >-
                          After escaping an attempted murder, Franck Lazarev
                          must find his wife Léo, who has been kidnapped by a
                          mysterious group of armed men. He is caught up by his
                          past as a former member of the French Elite
                          Intervention Squad and pulled into a state affair far
                          beyond his control.
                        popularity: 41.198
                        poster_path: /dOpSxmD3FWfl6SK8SLXw9uwcO05.jpg
                        release_date: '2025-01-10'
                        title: Ad Vitam
                        video: false
                        vote_average: 5.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        media_type: movie
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 1520.499
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-01-30'
                        title: Flow
                        video: false
                        vote_average: 8.414
                        vote_count: 634
                      - adult: false
                        backdrop_path: /jgySLjw9ZDKbnGf0VlhlHT7iHSi.jpg
                        genre_ids:
                          - 9648
                          - 53
                        id: 936245
                        media_type: movie
                        original_language: ko
                        original_title: 히든페이스
                        overview: >-
                          Su-yeon, a cellist in an orchestra led by her fiancé
                          and conductor Sung-jin, disappears one day, leaving
                          behind only a video recording. Sung-jin is devastated
                          over the loss of Su-yeon, but feels a strong
                          attraction to Mi-ju, a cellist who fills in for his
                          fiancée. Then one rainy night, Sung-jin and Mi-ju get
                          swept away by their mutual desires for each other and
                          commit an unforgivable act at Su-yeon’s house.
                          Meanwhile, Su-yeon, who is thought to have gone
                          missing, remains trapped in a secret room inside her
                          house, and watches the naked truth unravel before her.
                        popularity: 278.989
                        poster_path: /kjLbzQVkQovLpUt4rXiFY2Lv4qM.jpg
                        release_date: '2024-11-20'
                        title: Hidden Face
                        video: false
                        vote_average: 3.2
                        vote_count: 11
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 18
                          - 14
                          - 27
                        id: 426063
                        media_type: movie
                        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: 923.788
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.856
                        vote_count: 744
                      - adult: false
                        backdrop_path: /ic82PQy0hixc6wA5vOaK80lUCDw.jpg
                        genre_ids:
                          - 28
                          - 35
                        id: 1255788
                        media_type: movie
                        original_language: fr
                        original_title: Le Jardinier
                        overview: >-
                          Every year the Prime Minister has a list of all kinds
                          of troublemakers eliminated in the name of the famous
                          Reason of State. Serge Shuster, Special Adviser to the
                          President of the Republic, finds himself on this list,
                          better known as the Matignon List.  Condemned to
                          certain death and at the heart of an implacable plot
                          and a state secret that also put his family in danger,
                          Serge, his wife and children have only one hope left -
                          their gardener, Léo, who hates it when « slugs »
                          invade his garden... Especially those that want to
                          kill innocent families.
                        popularity: 31.797
                        poster_path: /zvLQXaiHn5g376AuHe8hd0u8tN2.jpg
                        release_date: '2025-01-10'
                        title: The Gardener
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        media_type: movie
                        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: 4115.631
                        poster_path: /d8Ryb8AunYAuycVKDp5HpdWPKgC.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.601
                        vote_count: 437
                      - adult: false
                        backdrop_path: /vZG7PrX9HmdgL5qfZRjhJsFYEIA.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                        id: 912649
                        media_type: movie
                        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: 2911.214
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.803
                        vote_count: 2254
                      - adult: false
                        backdrop_path: /7h6TqPB3ESmjuVbxCxAeB1c9OB1.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 933260
                        media_type: movie
                        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: 890.175
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.138
                        vote_count: 3127
                      - adult: false
                        backdrop_path: /ie8OSgIHEl6yQiGJ90dsyBWOpQA.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 28
                          - 12
                        id: 839033
                        media_type: movie
                        original_language: en
                        original_title: 'The Lord of the Rings: The War of the Rohirrim'
                        overview: >-
                          A sudden attack by Wulf, a clever and traitorous lord
                          of Rohan seeking vengeance for the death of his
                          father, forces Helm Hammerhand, the King of Rohan, and
                          his people to make a daring last stand in the ancient
                          stronghold of the Hornburg.
                        popularity: 1984.581
                        poster_path: /cXzCOx1hUuU9CfmiEv6rXjb6EqU.jpg
                        release_date: '2024-12-05'
                        title: 'The Lord of the Rings: The War of the Rohirrim'
                        video: false
                        vote_average: 6.5
                        vote_count: 276
                      - adult: false
                        backdrop_path: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 558449
                        media_type: movie
                        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: 3555.894
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.767
                        vote_count: 2187
                      - adult: false
                        backdrop_path: /hctfNoMpQGfn3VXdBYb9p0P5bT5.jpg
                        genre_ids:
                          - 18
                        id: 1097549
                        media_type: movie
                        original_language: en
                        original_title: Babygirl
                        overview: >-
                          A high-powered CEO puts her career and family on the
                          line when she begins a torrid affair with her much
                          younger intern.
                        popularity: 288.367
                        poster_path: /A8HbTd0FemZyFCh5qvJFpHGiwF8.jpg
                        release_date: '2024-12-25'
                        title: Babygirl
                        video: false
                        vote_average: 5.7
                        vote_count: 43
                      - adult: false
                        backdrop_path: /nGC3ZkXEcjGbqAAonS1xn6gaNpb.jpg
                        genre_ids:
                          - 35
                          - 18
                        id: 1013850
                        media_type: movie
                        original_language: en
                        original_title: A Real Pain
                        overview: >-
                          Mismatched cousins David and Benji reunite for a tour
                          through Poland to honor their beloved grandmother. The
                          adventure takes a turn when the pair's old tensions
                          resurface against the backdrop of their family
                          history.
                        popularity: 552.942
                        poster_path: /67xRIXm5TxXRT4nV2V4AEJ9yq2d.jpg
                        release_date: '2024-11-01'
                        title: A Real Pain
                        video: false
                        vote_average: 6.7
                        vote_count: 142
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                        id: 762509
                        media_type: movie
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Mufasa, a cub lost and alone, meets a sympathetic lion
                          named Taka, the heir to a royal bloodline. The chance
                          meeting sets in motion an expansive journey of a group
                          of misfits searching for their destiny.
                        popularity: 2684.622
                        poster_path: /iBqXjFkAozQ1z2sfAiWwBimbiJX.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.5
                        vote_count: 546
                      - adult: false
                        backdrop_path: /8DwV1DCZtqJNkEsRWE1d0ZmI2Is.jpg
                        genre_ids:
                          - 16
                          - 35
                          - 10751
                          - 12
                        id: 929204
                        media_type: movie
                        original_language: en
                        original_title: 'Wallace & Gromit: Vengeance Most Fowl'
                        overview: >-
                          Gromit’s concern that Wallace is becoming too
                          dependent on his inventions proves justified, when
                          Wallace invents a “smart” gnome that seems to develop
                          a mind of its own. When it emerges that a vengeful
                          figure from the past might be masterminding things, it
                          falls to Gromit to battle sinister forces and save his
                          master… or Wallace may never be able to invent again!
                        popularity: 720.905
                        poster_path: /6BxK38ehxuX2dJmZIMpJcVNbYks.jpg
                        release_date: '2024-12-18'
                        title: 'Wallace & Gromit: Vengeance Most Fowl'
                        video: false
                        vote_average: 7.8
                        vote_count: 202
                      - adult: false
                        backdrop_path: /9REO1DLpmwhrBJY3mYW5eVxkXFM.jpg
                        genre_ids:
                          - 12
                          - 18
                          - 878
                        id: 157336
                        media_type: movie
                        original_language: en
                        original_title: Interstellar
                        overview: >-
                          The adventures of a group of explorers who make use of
                          a newly discovered wormhole to surpass the limitations
                          on human space travel and conquer the vast distances
                          involved in an interstellar voyage.
                        popularity: 388.942
                        poster_path: /gEU2QniE6E77NI6lCU6MxlNBvIx.jpg
                        release_date: '2014-11-05'
                        title: Interstellar
                        video: false
                        vote_average: 8.447
                        vote_count: 36048
                      - adult: false
                        backdrop_path: /1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 878
                          - 10751
                        id: 1184918
                        media_type: movie
                        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: 718.614
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-12'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.374
                        vote_count: 3876
                      - adult: false
                        backdrop_path: /tElnmtQ6yz1PjN1kePNl8yMSb59.jpg
                        genre_ids:
                          - 16
                          - 12
                          - 10751
                          - 35
                        id: 1241982
                        media_type: movie
                        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: 2127.698
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 7.013
                        vote_count: 800
                      - adult: false
                        backdrop_path: /ijZdQrdcHLogPkhUD73rPxV5HWx.jpg
                        genre_ids:
                          - 53
                          - 99
                          - 878
                        id: 1023915
                        media_type: movie
                        original_language: en
                        original_title: '2073'
                        overview: >-
                          Inspired by Chris Marker's iconic 1962 featurette La
                          Jetée; the year is 2073—a not-so-distant dystopian
                          future—and the setting is New San Francisco, the
                          scorched-earth tech-dominant police state where
                          democracy and personal freedom have been well and
                          truly obliterated.
                        popularity: 27.794
                        poster_path: /cenBMd8pVeAw2V5rkI7r92DCznr.jpg
                        release_date: '2024-12-27'
                        title: '2073'
                        video: false
                        vote_average: 6.9
                        vote_count: 8
                      - adult: false
                        backdrop_path: /4cp40IyTpFfsT2IKpl0YlUkMBIR.jpg
                        genre_ids:
                          - 10749
                          - 35
                          - 18
                        id: 1064213
                        media_type: movie
                        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: 409.659
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.9
                        vote_count: 679
                  total_pages:
                    type: number
                    example: 500
                  total_results:
                    type: number
                    example: 10000
              examples:
                Movies:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        media_type: movie
                        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: 2260.092
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.3
                        vote_count: 1144
                      - adult: false
                        backdrop_path: /dMloNvayweggmvv0UD0iOJIkkbH.jpg
                        genre_ids:
                          - 53
                          - 18
                          - 80
                          - 28
                        id: 1261501
                        media_type: movie
                        original_language: fr
                        original_title: Ad Vitam
                        overview: >-
                          After escaping an attempted murder, Franck Lazarev
                          must find his wife Léo, who has been kidnapped by a
                          mysterious group of armed men. He is caught up by his
                          past as a former member of the French Elite
                          Intervention Squad and pulled into a state affair far
                          beyond his control.
                        popularity: 41.198
                        poster_path: /dOpSxmD3FWfl6SK8SLXw9uwcO05.jpg
                        release_date: '2025-01-10'
                        title: Ad Vitam
                        video: false
                        vote_average: 5.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        media_type: movie
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 1520.499
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-01-30'
                        title: Flow
                        video: false
                        vote_average: 8.414
                        vote_count: 634
                      - adult: false
                        backdrop_path: /jgySLjw9ZDKbnGf0VlhlHT7iHSi.jpg
                        genre_ids:
                          - 9648
                          - 53
                        id: 936245
                        media_type: movie
                        original_language: ko
                        original_title: 히든페이스
                        overview: >-
                          Su-yeon, a cellist in an orchestra led by her fiancé
                          and conductor Sung-jin, disappears one day, leaving
                          behind only a video recording. Sung-jin is devastated
                          over the loss of Su-yeon, but feels a strong
                          attraction to Mi-ju, a cellist who fills in for his
                          fiancée. Then one rainy night, Sung-jin and Mi-ju get
                          swept away by their mutual desires for each other and
                          commit an unforgivable act at Su-yeon’s house.
                          Meanwhile, Su-yeon, who is thought to have gone
                          missing, remains trapped in a secret room inside her
                          house, and watches the naked truth unravel before her.
                        popularity: 278.989
                        poster_path: /kjLbzQVkQovLpUt4rXiFY2Lv4qM.jpg
                        release_date: '2024-11-20'
                        title: Hidden Face
                        video: false
                        vote_average: 3.2
                        vote_count: 11
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 18
                          - 14
                          - 27
                        id: 426063
                        media_type: movie
                        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: 923.788
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.856
                        vote_count: 744
                      - adult: false
                        backdrop_path: /ic82PQy0hixc6wA5vOaK80lUCDw.jpg
                        genre_ids:
                          - 28
                          - 35
                        id: 1255788
                        media_type: movie
                        original_language: fr
                        original_title: Le Jardinier
                        overview: >-
                          Every year the Prime Minister has a list of all kinds
                          of troublemakers eliminated in the name of the famous
                          Reason of State. Serge Shuster, Special Adviser to the
                          President of the Republic, finds himself on this list,
                          better known as the Matignon List.  Condemned to
                          certain death and at the heart of an implacable plot
                          and a state secret that also put his family in danger,
                          Serge, his wife and children have only one hope left -
                          their gardener, Léo, who hates it when « slugs »
                          invade his garden... Especially those that want to
                          kill innocent families.
                        popularity: 31.797
                        poster_path: /zvLQXaiHn5g376AuHe8hd0u8tN2.jpg
                        release_date: '2025-01-10'
                        title: The Gardener
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        media_type: movie
                        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: 4115.631
                        poster_path: /d8Ryb8AunYAuycVKDp5HpdWPKgC.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.601
                        vote_count: 437
                      - adult: false
                        backdrop_path: /vZG7PrX9HmdgL5qfZRjhJsFYEIA.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                        id: 912649
                        media_type: movie
                        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: 2911.214
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.803
                        vote_count: 2254
                      - adult: false
                        backdrop_path: /7h6TqPB3ESmjuVbxCxAeB1c9OB1.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 933260
                        media_type: movie
                        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: 890.175
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.138
                        vote_count: 3127
                      - adult: false
                        backdrop_path: /ie8OSgIHEl6yQiGJ90dsyBWOpQA.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 28
                          - 12
                        id: 839033
                        media_type: movie
                        original_language: en
                        original_title: 'The Lord of the Rings: The War of the Rohirrim'
                        overview: >-
                          A sudden attack by Wulf, a clever and traitorous lord
                          of Rohan seeking vengeance for the death of his
                          father, forces Helm Hammerhand, the King of Rohan, and
                          his people to make a daring last stand in the ancient
                          stronghold of the Hornburg.
                        popularity: 1984.581
                        poster_path: /cXzCOx1hUuU9CfmiEv6rXjb6EqU.jpg
                        release_date: '2024-12-05'
                        title: 'The Lord of the Rings: The War of the Rohirrim'
                        video: false
                        vote_average: 6.5
                        vote_count: 276
                      - adult: false
                        backdrop_path: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 558449
                        media_type: movie
                        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: 3555.894
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.767
                        vote_count: 2187
                      - adult: false
                        backdrop_path: /hctfNoMpQGfn3VXdBYb9p0P5bT5.jpg
                        genre_ids:
                          - 18
                        id: 1097549
                        media_type: movie
                        original_language: en
                        original_title: Babygirl
                        overview: >-
                          A high-powered CEO puts her career and family on the
                          line when she begins a torrid affair with her much
                          younger intern.
                        popularity: 288.367
                        poster_path: /A8HbTd0FemZyFCh5qvJFpHGiwF8.jpg
                        release_date: '2024-12-25'
                        title: Babygirl
                        video: false
                        vote_average: 5.7
                        vote_count: 43
                      - adult: false
                        backdrop_path: /nGC3ZkXEcjGbqAAonS1xn6gaNpb.jpg
                        genre_ids:
                          - 35
                          - 18
                        id: 1013850
                        media_type: movie
                        original_language: en
                        original_title: A Real Pain
                        overview: >-
                          Mismatched cousins David and Benji reunite for a tour
                          through Poland to honor their beloved grandmother. The
                          adventure takes a turn when the pair's old tensions
                          resurface against the backdrop of their family
                          history.
                        popularity: 552.942
                        poster_path: /67xRIXm5TxXRT4nV2V4AEJ9yq2d.jpg
                        release_date: '2024-11-01'
                        title: A Real Pain
                        video: false
                        vote_average: 6.7
                        vote_count: 142
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                        id: 762509
                        media_type: movie
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Mufasa, a cub lost and alone, meets a sympathetic lion
                          named Taka, the heir to a royal bloodline. The chance
                          meeting sets in motion an expansive journey of a group
                          of misfits searching for their destiny.
                        popularity: 2684.622
                        poster_path: /iBqXjFkAozQ1z2sfAiWwBimbiJX.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.5
                        vote_count: 546
                      - adult: false
                        backdrop_path: /8DwV1DCZtqJNkEsRWE1d0ZmI2Is.jpg
                        genre_ids:
                          - 16
                          - 35
                          - 10751
                          - 12
                        id: 929204
                        media_type: movie
                        original_language: en
                        original_title: 'Wallace & Gromit: Vengeance Most Fowl'
                        overview: >-
                          Gromit’s concern that Wallace is becoming too
                          dependent on his inventions proves justified, when
                          Wallace invents a “smart” gnome that seems to develop
                          a mind of its own. When it emerges that a vengeful
                          figure from the past might be masterminding things, it
                          falls to Gromit to battle sinister forces and save his
                          master… or Wallace may never be able to invent again!
                        popularity: 720.905
                        poster_path: /6BxK38ehxuX2dJmZIMpJcVNbYks.jpg
                        release_date: '2024-12-18'
                        title: 'Wallace & Gromit: Vengeance Most Fowl'
                        video: false
                        vote_average: 7.8
                        vote_count: 202
                      - adult: false
                        backdrop_path: /9REO1DLpmwhrBJY3mYW5eVxkXFM.jpg
                        genre_ids:
                          - 12
                          - 18
                          - 878
                        id: 157336
                        media_type: movie
                        original_language: en
                        original_title: Interstellar
                        overview: >-
                          The adventures of a group of explorers who make use of
                          a newly discovered wormhole to surpass the limitations
                          on human space travel and conquer the vast distances
                          involved in an interstellar voyage.
                        popularity: 388.942
                        poster_path: /gEU2QniE6E77NI6lCU6MxlNBvIx.jpg
                        release_date: '2014-11-05'
                        title: Interstellar
                        video: false
                        vote_average: 8.447
                        vote_count: 36048
                      - adult: false
                        backdrop_path: /1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 878
                          - 10751
                        id: 1184918
                        media_type: movie
                        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: 718.614
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-12'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.374
                        vote_count: 3876
                      - adult: false
                        backdrop_path: /tElnmtQ6yz1PjN1kePNl8yMSb59.jpg
                        genre_ids:
                          - 16
                          - 12
                          - 10751
                          - 35
                        id: 1241982
                        media_type: movie
                        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: 2127.698
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 7.013
                        vote_count: 800
                      - adult: false
                        backdrop_path: /ijZdQrdcHLogPkhUD73rPxV5HWx.jpg
                        genre_ids:
                          - 53
                          - 99
                          - 878
                        id: 1023915
                        media_type: movie
                        original_language: en
                        original_title: '2073'
                        overview: >-
                          Inspired by Chris Marker's iconic 1962 featurette La
                          Jetée; the year is 2073—a not-so-distant dystopian
                          future—and the setting is New San Francisco, the
                          scorched-earth tech-dominant police state where
                          democracy and personal freedom have been well and
                          truly obliterated.
                        popularity: 27.794
                        poster_path: /cenBMd8pVeAw2V5rkI7r92DCznr.jpg
                        release_date: '2024-12-27'
                        title: '2073'
                        video: false
                        vote_average: 6.9
                        vote_count: 8
                      - adult: false
                        backdrop_path: /4cp40IyTpFfsT2IKpl0YlUkMBIR.jpg
                        genre_ids:
                          - 10749
                          - 35
                          - 18
                        id: 1064213
                        media_type: movie
                        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: 409.659
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.9
                        vote_count: 679
                    total_pages: 500
                    total_results: 10000

````