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

# Get trending movies

> Get the trending movies on TMDB.



## OpenAPI

````yaml api-reference/openapi.yaml get /3/trending/movie/day
openapi: 3.0.3
info:
  title: Endpoints
  description: This section contains all the endpoints used in the documentation.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: This section contains all endpoints used for authentication
  - name: Accounts
    description: This section contains account-specific endpoints.
  - name: Favorites
    description: >-
      This section contains all endpoints that allow a TMDB account to add
      movies, TV Shows, episodes to favorites, and also to get a list of
      favorites for the account.
  - name: Movies
    description: >-
      This section contains an endpoint to add a movie to favorites, and another
      to get a list of favorite movies for a TMDB account.
  - name: TV shows
    description: >-
      This section contains an endpoint to get the favorite TV shows for an
      account.
  - name: Watchlist
    description: >-
      This section contains all endpoints that allow a TMDB account to add
      movies, TV Shows to watchlist, and also to get a list of watchlist for the
      account.
  - name: Movies1
    description: >-
      This section contains an endpoint that allows a TMDB account to add a
      movie to watchlist, and another to get the movies in a watchlist.
  - name: TV shows1
    description: >-
      This section contains an endpoint used to get TV shows in an account's
      watchlist.
  - name: Ratings
    description: >-
      This section contains endpoints used to get all movies, TV Shows, and
      episodes rated by a TMDB account.
  - name: Movies12
    description: >-
      This section contains an endpoint used to get a list of movies rated by a
      TMDB account.
  - name: TV shows12
    description: >-
      This section contains an endpoint used to get a list of TV shows rated by
      a TMDB account.
  - name: Episodes
    description: >-
      This section contains an endpoint used to get a list of episodes rated by
      a TMDB account.
  - name: Lists
    description: Endpoints for a TMDB account lists.
  - name: Guest sessions
    description: This section contains all endpoints accessible by a guest session.
  - name: Movies
    description: For movies.
  - name: TV episodes
    description: >-
      This section contains all endpoints used to retrieve data for all TV
      episodes.
  - name: TV seasons
    description: >-
      This section contains all endpoints used to retrieve data for all TV
      seasons.
  - name: TV series
    description: >-
      This section contains all endpoints used to retrieve data for all TV
      series.
  - name: TV series lists
    description: This section contains all endpoints used to list TV series.
  - name: TV episode groups
    description: This section contains an endpoint used to retrieve data for TV episodes.
  - name: Watch providers
    description: Get available regions.
  - name: People
    description: About people lists.
  - name: Companies
    description: >-
      This section contains all endpoints used to retrieve data for supported
      companies.
  - name: Discover
    description: This section contains all endpoints used to discover movies and TV shows.
  - name: Recent changes
    description: >-
      This section contains all endpoints used to get recent changes in the TMDB
      database.
  - name: Credit
    description: This section contains an endpoint used to retrieve movie credits.
  - name: Certifications
    description: >-
      This section contains all endpoints used to get certification for movies
      and TV shows.
  - name: Collections
    description: This section contains all endpoints used to retrieve data for collections
  - name: Configuration
    description: >-
      This section contains all endpoints used to retrieve data on TMDB's
      configurations.
  - name: Find
    description: >-
      This section contains an endpoint used to search the TMDB database by
      External ID.
  - name: Genres
    description: This section contains endpoints related to genres.
  - name: Keywords
    description: >-
      This section contains an endpoint used to get keywords in the database by
      an ID.
  - name: Movie lists
    description: >-
      This section contains all endpoints used to retrieve movies by multiple
      search filters.
  - name: Networks
    description: For network endpoints.
  - name: Reviews
    description: For reviews endpoints.
  - name: Search
    description: For search endpoints.
  - name: Trending
    description: For trending videos.
paths:
  /3/trending/movie/day:
    get:
      tags:
        - Trending
      summary: Get trending movies
      description: Get the trending movies on TMDB.
      operationId: getTrendingMovies
      responses:
        '200':
          description: New Request
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=225
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 22:02:59 GMT
            ETag:
              schema:
                type: string
                example: W/"694f108da02a6decfd8837ad232ba55e"
            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 ff2012aca0ae72bb05b003fad40aa354.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 9DKERsHPZUTanHqLZC6CBBHEQQtkVwhx9Qc16zeeLRDCASGW9aT43g==
            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: '375'
            x-memc-expires:
              schema:
                type: string
                example: '225'
            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: /uVlUu174iiKhsUGqnOSy46eIIMU.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: 2156.489
                        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.4
                        vote_count:
                          type: number
                          example: 892
                    example:
                      - adult: false
                        backdrop_path: /uVlUu174iiKhsUGqnOSy46eIIMU.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: 2156.489
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.4
                        vote_count: 892
                      - adult: false
                        backdrop_path: /8DwV1DCZtqJNkEsRWE1d0ZmI2Is.jpg
                        genre_ids:
                          - 16
                          - 35
                          - 10751
                        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: 139.535
                        poster_path: /6BxK38ehxuX2dJmZIMpJcVNbYks.jpg
                        release_date: '2024-12-18'
                        title: 'Wallace & Gromit: Vengeance Most Fowl'
                        video: false
                        vote_average: 7.799
                        vote_count: 67
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 27
                          - 14
                          - 18
                        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: 895.241
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.723
                        vote_count: 282
                      - 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: >-
                          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.335
                        vote_count: 391
                      - 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: 5382.147
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.759
                        vote_count: 1889
                      - 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: 3403.343
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.62
                        vote_count: 291
                      - adult: false
                        backdrop_path: /3WnoZw50qIfXsFnKr0LddEh5Jnf.jpg
                        genre_ids:
                          - 10752
                          - 36
                        id: 1222248
                        media_type: movie
                        original_language: 'no'
                        original_title: Nr. 24
                        overview: >-
                          On the brink of the Second World War, a young
                          Norwegian man's drive to resist the Nazis sets a new
                          course for his future – and the future of his country.
                        popularity: 19.874
                        poster_path: /rzsmKSFEsEWBLbJ968abffnfYZ7.jpg
                        release_date: '2024-10-30'
                        title: Number 24
                        video: false
                        vote_average: 7.8
                        vote_count: 20
                      - 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: 140.69
                        poster_path: /38lb62nJcNvVgCDkFt2wiVE0bX4.jpg
                        release_date: '2024-11-01'
                        title: A Real Pain
                        video: false
                        vote_average: 7
                        vote_count: 69
                      - adult: false
                        backdrop_path: /rFKbPDXBzgn4eYBdJXaAPEYIcyA.jpg
                        genre_ids:
                          - 35
                          - 10749
                        id: 1397854
                        media_type: movie
                        original_language: it
                        original_title: Mica è Colpa Mia
                        overview: >-
                          Drowning in debt, two brothers concoct a plan to scam
                          a wealthy heiress and save their home in Naples — but
                          unexpected love soon complicates the scheme.
                        popularity: 110.687
                        poster_path: /kWBjdB6tP71ed4WTFxuqDZnWVk5.jpg
                        release_date: '2025-01-01'
                        title: The Love Scam
                        video: false
                        vote_average: 6.7
                        vote_count: 18
                      - adult: false
                        backdrop_path: /2C4js9DGb3GzoZeef1ZzhSGLXRO.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1156593
                        media_type: movie
                        original_language: es
                        original_title: Culpa tuya
                        overview: >-
                          The love between Noah and Nick seems unwavering
                          despite their parents' attempts to separate them. But
                          his job and her entry into college open up their lives
                          to new relationships that will shake the foundations
                          of both their relationship and the Leister family
                          itself.
                        popularity: 5236.256
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.1
                        vote_count: 579
                      - 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: 2873.518
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.985
                        vote_count: 726
                      - adult: false
                        backdrop_path: /gNxxsgs8RaREKmUk4xsvJaKC41g.jpg
                        genre_ids:
                          - 35
                          - 99
                        id: 1253971
                        media_type: movie
                        original_language: en
                        original_title: Cunk on Life
                        overview: >-
                          Pioneering documentary maker Philomena Cunk returns
                          with her most ambitious quest to date: venturing right
                          up the universe and everything to examine life and
                          existence in an attempt to find out the point of it
                          all. Along the way, she interrogates experts on
                          subjects from the big bang to biology and art to
                          artificial intelligence. Really get to the nub of it.
                        popularity: 51.873
                        poster_path: /zZx5a595bYuNxd8TdoRflxATFML.jpg
                        release_date: '2024-12-05'
                        title: Cunk on Life
                        video: false
                        vote_average: 8.031
                        vote_count: 16
                      - 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: 682.243
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.892
                        vote_count: 627
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.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: 953.442
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 2937
                      - adult: false
                        backdrop_path: /ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1138194
                        media_type: movie
                        original_language: en
                        original_title: Heretic
                        overview: >-
                          Two young missionaries are forced to prove their faith
                          when they knock on the wrong door and are greeted by a
                          diabolical Mr. Reed, becoming ensnared in his deadly
                          game of cat-and-mouse.
                        popularity: 840.621
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.182
                        vote_count: 681
                      - adult: false
                        backdrop_path: /A6vAMO3myroRfBwSZetY4GVqaW4.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: >-
                          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: 179
                      - adult: false
                        backdrop_path: /3sh2UA2Q2l7fihgoj1LhFFPTlIM.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                          - 53
                        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: 3527.162
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.792
                        vote_count: 2085
                      - adult: false
                        backdrop_path: /ey6HaUwo4CJoOYDlJ0M90ykJ0dt.jpg
                        genre_ids:
                          - 99
                        id: 1401905
                        media_type: movie
                        original_language: en
                        original_title: 'Don''t Die: The Man Who Wants to Live Forever'
                        overview: >-
                          In this documentary, wealthy entrepreneur Bryan
                          Johnson puts his body and fortune on the line to defy
                          aging and extend his life beyond all known limits.
                        popularity: 55.891
                        poster_path: /7VqUPN0oRHfYV9hdZcal1ZzffmV.jpg
                        release_date: '2025-01-01'
                        title: 'Don''t Die: The Man Who Wants to Live Forever'
                        video: false
                        vote_average: 6
                        vote_count: 6
                      - adult: false
                        backdrop_path: /eP4RZSHliWu6lPT5WQyHr5ZZKuC.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 945961
                        media_type: movie
                        original_language: en
                        original_title: 'Alien: Romulus'
                        overview: >-
                          While scavenging the deep ends of a derelict space
                          station, a group of young space colonizers come face
                          to face with the most terrifying life form in the
                          universe.
                        popularity: 679.684
                        poster_path: /2uSWRTtCG336nuBiG8jOTEUKSy8.jpg
                        release_date: '2024-08-13'
                        title: 'Alien: Romulus'
                        video: false
                        vote_average: 7.227
                        vote_count: 2871
                      - adult: false
                        backdrop_path: /cjEcqdRdPQJhYre3HUAc5538Gk8.jpg
                        genre_ids:
                          - 28
                          - 14
                          - 35
                        id: 845781
                        media_type: movie
                        original_language: en
                        original_title: Red One
                        overview: >-
                          After Santa Claus (codename: Red One) is kidnapped,
                          the North Pole's Head of Security must team up with
                          the world's most infamous tracker in a globe-trotting,
                          action-packed mission to save Christmas.
                        popularity: 3805.408
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7.028
                        vote_count: 1757
                  total_pages:
                    type: number
                    example: 500
                  total_results:
                    type: number
                    example: 10000
              examples:
                New Request:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /uVlUu174iiKhsUGqnOSy46eIIMU.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: 2156.489
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.4
                        vote_count: 892
                      - adult: false
                        backdrop_path: /8DwV1DCZtqJNkEsRWE1d0ZmI2Is.jpg
                        genre_ids:
                          - 16
                          - 35
                          - 10751
                        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: 139.535
                        poster_path: /6BxK38ehxuX2dJmZIMpJcVNbYks.jpg
                        release_date: '2024-12-18'
                        title: 'Wallace & Gromit: Vengeance Most Fowl'
                        video: false
                        vote_average: 7.799
                        vote_count: 67
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 27
                          - 14
                          - 18
                        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: 895.241
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.723
                        vote_count: 282
                      - 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: >-
                          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.335
                        vote_count: 391
                      - 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: 5382.147
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.759
                        vote_count: 1889
                      - 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: 3403.343
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.62
                        vote_count: 291
                      - adult: false
                        backdrop_path: /3WnoZw50qIfXsFnKr0LddEh5Jnf.jpg
                        genre_ids:
                          - 10752
                          - 36
                        id: 1222248
                        media_type: movie
                        original_language: 'no'
                        original_title: Nr. 24
                        overview: >-
                          On the brink of the Second World War, a young
                          Norwegian man's drive to resist the Nazis sets a new
                          course for his future – and the future of his country.
                        popularity: 19.874
                        poster_path: /rzsmKSFEsEWBLbJ968abffnfYZ7.jpg
                        release_date: '2024-10-30'
                        title: Number 24
                        video: false
                        vote_average: 7.8
                        vote_count: 20
                      - 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: 140.69
                        poster_path: /38lb62nJcNvVgCDkFt2wiVE0bX4.jpg
                        release_date: '2024-11-01'
                        title: A Real Pain
                        video: false
                        vote_average: 7
                        vote_count: 69
                      - adult: false
                        backdrop_path: /rFKbPDXBzgn4eYBdJXaAPEYIcyA.jpg
                        genre_ids:
                          - 35
                          - 10749
                        id: 1397854
                        media_type: movie
                        original_language: it
                        original_title: Mica è Colpa Mia
                        overview: >-
                          Drowning in debt, two brothers concoct a plan to scam
                          a wealthy heiress and save their home in Naples — but
                          unexpected love soon complicates the scheme.
                        popularity: 110.687
                        poster_path: /kWBjdB6tP71ed4WTFxuqDZnWVk5.jpg
                        release_date: '2025-01-01'
                        title: The Love Scam
                        video: false
                        vote_average: 6.7
                        vote_count: 18
                      - adult: false
                        backdrop_path: /2C4js9DGb3GzoZeef1ZzhSGLXRO.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1156593
                        media_type: movie
                        original_language: es
                        original_title: Culpa tuya
                        overview: >-
                          The love between Noah and Nick seems unwavering
                          despite their parents' attempts to separate them. But
                          his job and her entry into college open up their lives
                          to new relationships that will shake the foundations
                          of both their relationship and the Leister family
                          itself.
                        popularity: 5236.256
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.1
                        vote_count: 579
                      - 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: 2873.518
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.985
                        vote_count: 726
                      - adult: false
                        backdrop_path: /gNxxsgs8RaREKmUk4xsvJaKC41g.jpg
                        genre_ids:
                          - 35
                          - 99
                        id: 1253971
                        media_type: movie
                        original_language: en
                        original_title: Cunk on Life
                        overview: >-
                          Pioneering documentary maker Philomena Cunk returns
                          with her most ambitious quest to date: venturing right
                          up the universe and everything to examine life and
                          existence in an attempt to find out the point of it
                          all. Along the way, she interrogates experts on
                          subjects from the big bang to biology and art to
                          artificial intelligence. Really get to the nub of it.
                        popularity: 51.873
                        poster_path: /zZx5a595bYuNxd8TdoRflxATFML.jpg
                        release_date: '2024-12-05'
                        title: Cunk on Life
                        video: false
                        vote_average: 8.031
                        vote_count: 16
                      - 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: 682.243
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.892
                        vote_count: 627
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.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: 953.442
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 2937
                      - adult: false
                        backdrop_path: /ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1138194
                        media_type: movie
                        original_language: en
                        original_title: Heretic
                        overview: >-
                          Two young missionaries are forced to prove their faith
                          when they knock on the wrong door and are greeted by a
                          diabolical Mr. Reed, becoming ensnared in his deadly
                          game of cat-and-mouse.
                        popularity: 840.621
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.182
                        vote_count: 681
                      - adult: false
                        backdrop_path: /A6vAMO3myroRfBwSZetY4GVqaW4.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: >-
                          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: 179
                      - adult: false
                        backdrop_path: /3sh2UA2Q2l7fihgoj1LhFFPTlIM.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                          - 53
                        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: 3527.162
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.792
                        vote_count: 2085
                      - adult: false
                        backdrop_path: /ey6HaUwo4CJoOYDlJ0M90ykJ0dt.jpg
                        genre_ids:
                          - 99
                        id: 1401905
                        media_type: movie
                        original_language: en
                        original_title: 'Don''t Die: The Man Who Wants to Live Forever'
                        overview: >-
                          In this documentary, wealthy entrepreneur Bryan
                          Johnson puts his body and fortune on the line to defy
                          aging and extend his life beyond all known limits.
                        popularity: 55.891
                        poster_path: /7VqUPN0oRHfYV9hdZcal1ZzffmV.jpg
                        release_date: '2025-01-01'
                        title: 'Don''t Die: The Man Who Wants to Live Forever'
                        video: false
                        vote_average: 6
                        vote_count: 6
                      - adult: false
                        backdrop_path: /eP4RZSHliWu6lPT5WQyHr5ZZKuC.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 945961
                        media_type: movie
                        original_language: en
                        original_title: 'Alien: Romulus'
                        overview: >-
                          While scavenging the deep ends of a derelict space
                          station, a group of young space colonizers come face
                          to face with the most terrifying life form in the
                          universe.
                        popularity: 679.684
                        poster_path: /2uSWRTtCG336nuBiG8jOTEUKSy8.jpg
                        release_date: '2024-08-13'
                        title: 'Alien: Romulus'
                        video: false
                        vote_average: 7.227
                        vote_count: 2871
                      - adult: false
                        backdrop_path: /cjEcqdRdPQJhYre3HUAc5538Gk8.jpg
                        genre_ids:
                          - 28
                          - 14
                          - 35
                        id: 845781
                        media_type: movie
                        original_language: en
                        original_title: Red One
                        overview: >-
                          After Santa Claus (codename: Red One) is kidnapped,
                          the North Pole's Head of Security must team up with
                          the world's most infamous tracker in a globe-trotting,
                          action-packed mission to save Christmas.
                        popularity: 3805.408
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7.028
                        vote_count: 1757
                    total_pages: 500
                    total_results: 10000
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````