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

# Recommendations

> Recommendations



## OpenAPI

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


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


      1. **Create a new request token**  

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

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


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


      ## Step 1: Create a request token


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


      ## Step 2: Ask the user for permission


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


      ```

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

      ```


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


      ```

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

      ```


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


      ## Step 3: Create a session ID


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


      ## What about guest sessions?


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


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


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


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/movie/{{movie_id}}/recommendations:
    parameters:
      - name: movie_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Movies
      summary: Recommendations
      description: Recommendations
      operationId: recommendations
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Recommend
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=15507
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 08 Jan 2025 22:04:19 GMT
            ETag:
              schema:
                type: string
                example: W/"ffc65b7ee737f9244791f9c0af10e76a"
            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 5f56e7df8387a5dd3295f126e9d480d0.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: UjyG4vyTCn70-gOSVU2DSJH1qvF5rnAhVRXVSm5rxF1nr8l9M8cBjg==
            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: '10287'
            x-memc-expires:
              schema:
                type: string
                example: '15507'
            x-memc-key:
              schema:
                type: string
                example: 3da360f1561b36165d901d7ce53e0743
          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
                          nullable: true
                          example: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 12
                          example:
                            - 12
                            - 10751
                            - 16
                        id:
                          type: number
                          example: 762509
                        media_type:
                          type: string
                          example: movie
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: 'Mufasa: The Lion King'
                        overview:
                          type: string
                          example: >-
                            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:
                          type: number
                          example: 2924.518
                        poster_path:
                          type: string
                          example: /nHhjqeJcaQKOBCd21c1kV2DK5gm.jpg
                        release_date:
                          type: string
                          example: '2024-12-18'
                        title:
                          type: string
                          example: 'Mufasa: The Lion King'
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.43
                        vote_count:
                          type: number
                          example: 508
                    example:
                      - 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: 2924.518
                        poster_path: /nHhjqeJcaQKOBCd21c1kV2DK5gm.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.43
                        vote_count: 508
                      - adult: false
                        backdrop_path: /XNVdWNgiAHu8y4BsJv5ndUHXxN.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: 750.455
                        poster_path: /6BxK38ehxuX2dJmZIMpJcVNbYks.jpg
                        release_date: '2024-12-18'
                        title: 'Wallace & Gromit: Vengeance Most Fowl'
                        video: false
                        vote_average: 7.7
                        vote_count: 179
                      - 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: 2083.288
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.989
                        vote_count: 783
                      - adult: false
                        backdrop_path: /k24eZq5I3jyz4htPkZCRpnUmBzE.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: 3009.907
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.136
                        vote_count: 745
                      - adult: false
                        backdrop_path: /7IGWtc6UP1vc7rAg8CRoEW1nSDf.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 10751
                          - 35
                          - 878
                        id: 979296
                        media_type: movie
                        original_language: en
                        original_title: Sonic Drone Home
                        overview: >-
                          Sonic, Tails, and Knuckles encounter an abandoned
                          Badnik drone which upgraded itself using parts from a
                          junkyard, with the intention of conquering the world.
                        popularity: 94.748
                        poster_path: /ifc2YN7eZeHKwaoiT0Xn8LiJCFb.jpg
                        release_date: '2022-05-24'
                        title: Sonic Drone Home
                        video: false
                        vote_average: 7
                        vote_count: 51
                      - 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: 2249.629
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7
                        vote_count: 1889
                      - adult: false
                        backdrop_path: /csQSGH0QU8D3Ov5YLEYuHep8ihA.jpg
                        genre_ids:
                          - 878
                          - 53
                          - 12
                          - 28
                        id: 1196470
                        media_type: movie
                        original_language: fr
                        original_title: Survivre
                        overview: >-
                          A couple celebrates their son’s birthday in the middle
                          of the ocean on their boat. A violent storm hits and
                          it brings up hungry creatures from the depths and they
                          fight for their survival.
                        popularity: 354.45
                        poster_path: /59nsfU5hMG3puDZIGzZzJ1yW8FN.jpg
                        release_date: '2024-06-19'
                        title: Survive
                        video: false
                        vote_average: 5.9
                        vote_count: 94
                      - 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: 262.088
                        poster_path: /A8HbTd0FemZyFCh5qvJFpHGiwF8.jpg
                        release_date: '2024-12-25'
                        title: Babygirl
                        video: false
                        vote_average: 5.7
                        vote_count: 40
                      - adult: false
                        backdrop_path: /lvDvnjlIo5NdUQvNHPAZfB6JgBj.jpg
                        genre_ids:
                          - 53
                          - 9648
                          - 18
                        id: 74525
                        media_type: movie
                        original_language: en
                        original_title: Sleep, My Love
                        overview: >-
                          A woman wakes up in the middle of the night on board a
                          train, but she can't remember how she got there.
                          Danger and suspense ensue.
                        popularity: 4.233
                        poster_path: /9frXdBO5Z8gP0YwNHNt3DhKavBt.jpg
                        release_date: '1948-02-18'
                        title: Sleep, My Love
                        video: false
                        vote_average: 6.4
                        vote_count: 49
                      - adult: false
                        backdrop_path: /9OFqXInG7KF3a7x5r702KCsRePc.jpg
                        genre_ids:
                          - 10770
                          - 35
                          - 10749
                        id: 1180353
                        media_type: movie
                        original_language: en
                        original_title: Journey to Christmas
                        overview: >-
                          While on a charity press tour, a model ends up
                          stranded by the weather at the family home of the
                          driver she hired to assist her for the week.
                        popularity: 6.394
                        poster_path: /1uOomfFceVWkRkSwyR1MDLhiYNx.jpg
                        release_date: '2023-10-29'
                        title: Journey to Christmas
                        video: false
                        vote_average: 7.033
                        vote_count: 15
                      - adult: false
                        backdrop_path: /dzY2ZYyPRbXcw8UOupHK3V5VQYk.jpg
                        genre_ids:
                          - 10749
                        id: 259872
                        media_type: movie
                        original_language: nl
                        original_title: Des jours plus belles que la nuit
                        overview: >-
                          Real-life young couple Wim and Floor spend an
                          afternoon in the sunwashed rooms of a crumbling home
                          in Belgium. In a unique twist, this artistic erotic
                          documentary is edited in nearly real-time. In the
                          slowness, we get the build, the sweetness, and the
                          sexiness. Forget about fingersnapping fast editing.
                          Slow is where it’s at.
                        popularity: 395.224
                        poster_path: /uCkANtG6ezb7hjRKVudY3PUcbvn.jpg
                        release_date: '2010-02-19'
                        title: Skin. Like. Sun.
                        video: false
                        vote_average: 6.4
                        vote_count: 25
                      - adult: false
                        backdrop_path: /5czIa6TUyMrtldHGXVZNEjnjbjC.jpg
                        genre_ids:
                          - 27
                          - 9648
                          - 18
                        id: 1155095
                        media_type: movie
                        original_language: en
                        original_title: The Moor
                        overview: >-
                          Claire is approached by the father of her murdered
                          childhood friend to help investigate the haunted moor
                          he believes is his son's final resting place.
                        popularity: 262.038
                        poster_path: /5l3MJjjCWl8GXXNWC7rCMmaB71g.jpg
                        release_date: '2024-06-14'
                        title: The Moor
                        video: false
                        vote_average: 5.3
                        vote_count: 28
                      - adult: false
                        backdrop_path: /gMr7fjjpY084LdzYsW6blWj5UTa.jpg
                        genre_ids:
                          - 10751
                          - 16
                          - 14
                          - 10770
                        id: 26538
                        media_type: movie
                        original_language: en
                        original_title: Jack Frost
                        overview: >-
                          Pardon-me Pete, the official groundhog of Groundhog
                          Day, tells the story of Jack Frost, who falls in love
                          with a beautiful young woman and begs Father Winter to
                          make him human so that she can see him. His request is
                          granted, but only on the condition that by the Spring
                          he has a house, a bag of gold, a horse and a wife. But
                          Jack finds that life as a human is more complicated
                          than he thought.
                        popularity: 8.925
                        poster_path: /lIuudXPo9vF1Sxsgdv6KXhqae50.jpg
                        release_date: '1979-12-13'
                        title: Jack Frost
                        video: false
                        vote_average: 6.495
                        vote_count: 92
                      - adult: false
                        backdrop_path: /xFsDewuVTcuuWJRvVRMM8Pr24ff.jpg
                        genre_ids:
                          - 16
                          - 35
                        id: 25223
                        media_type: movie
                        original_language: en
                        original_title: Gopher Broke
                        overview: >-
                          A gopher finds himself on a road where trucks are
                          hauling produce to market. He hits on the idea of
                          shaking some of the produce loose for himself, but
                          other animals always beat him to the booty. That is,
                          until a truck comes along with a cow...
                        popularity: 3.419
                        poster_path: /cAXXnuKvqwjswFWd1caSDELteRu.jpg
                        release_date: '2004-11-30'
                        title: Gopher Broke
                        video: false
                        vote_average: 5.8
                        vote_count: 39
                      - adult: false
                        backdrop_path: /h3lW1GzRqwVxfbTAddlNgWY9lNa.jpg
                        genre_ids:
                          - 99
                          - 10402
                        id: 844613
                        media_type: movie
                        original_language: en
                        original_title: Sonic 30th Anniversary Symphony
                        overview: >-
                          30 years ago, on June 23rd, 1991, Sonic the Hedgehog
                          was released on the SEGA Genesis, beginning a new era
                          of gaming.  Since then, Sonic has been running through
                          countless zones, beating badniks, and saving the world
                          with the help of his friends.  This performance is to
                          thank you, all of you, for being there every step of
                          the way, and to remind us all of the amazing journey
                          we've been on.  Happy 30th Anniversary, Sonic!
                        popularity: 24.828
                        poster_path: /nhbXu6nIBV6lP4L93eHi7PJcILE.jpg
                        release_date: '2021-06-23'
                        title: Sonic 30th Anniversary Symphony
                        video: false
                        vote_average: 8.5
                        vote_count: 6
                      - adult: false
                        backdrop_path: /uSmxYmKy163rm7Hr7rjSEVO6ZCc.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1201834
                        media_type: movie
                        original_language: en
                        original_title: Black Santa
                        overview: >-
                          Growing up in the suburbs of Houston, Texas, Stephon
                          and Blake Blanton are happy and come from a loving
                          family. Their Christmas days were filled with gifts
                          and so much joy. All this changes in the blink of an
                          eye, when their lives are suddenly turned upside down,
                          and they end up in the home of Ms. Mary.
                        popularity: 1.546
                        poster_path: /e8L17Erxzr5ErUl8PrgRyDHXpKL.jpg
                        release_date: '2023-11-07'
                        title: Black Santa
                        video: false
                        vote_average: 7
                        vote_count: 2
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 27
                          - 18
                        id: 1398516
                        media_type: movie
                        original_language: en
                        original_title: Where Do Kids Go When They Fall Asleep?
                        overview: >-
                          A group of children in a small town begins vanishing
                          from their beds at night, only to reappear in the
                          morning with terrifying memories they can't fully
                          remember.
                        popularity: 0.078
                        poster_path: /cCnCC7Y9Sv7yLDCKsKc5JvLmgEG.jpg
                        release_date: ''
                        title: Where Do Kids Go When They Fall Asleep?
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /w8N4FfFAPACVO241hjmnbWYlQIE.jpg
                        genre_ids:
                          - 878
                          - 12
                          - 35
                          - 10751
                        id: 1401586
                        media_type: movie
                        original_language: en
                        original_title: Sonic the Hedgehog 4
                        overview: >-
                          The fourth installment in the Sonic the Hedgehog
                          franchise. Plot TBA.
                        popularity: 293.5
                        poster_path: /3ZqRlZG5yK873gONZXO06Oub20C.jpg
                        release_date: ''
                        title: Sonic the Hedgehog 4
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /A2eEFV6b3gmzXZTVAyi5qCp9GP2.jpg
                        genre_ids:
                          - 35
                        id: 77012
                        media_type: movie
                        original_language: en
                        original_title: Mr. Belvedere Goes to College
                        overview: >-
                          A middle-aged genius goes to college for the first
                          time.
                        popularity: 1.253
                        poster_path: /2q5UUR0ytGqMal3brK3T8RrJmcT.jpg
                        release_date: '1949-04-15'
                        title: Mr. Belvedere Goes to College
                        video: false
                        vote_average: 6.7
                        vote_count: 7
                      - adult: false
                        backdrop_path: /s9iFz6ggb9NU6rV7ifOwFjdNT3z.jpg
                        genre_ids:
                          - 35
                          - 10402
                          - 10749
                        id: 1217484
                        media_type: movie
                        original_language: fr
                        original_title: Joli Joli
                        overview: >-
                          Set between Paris and Rome’s Cinecitta’s Studios in
                          the 1970s, a struggling writer seeks inspiration for
                          his second novel, and falls in love with a famous
                          movie star.
                        popularity: 4.828
                        poster_path: /p6pbmOSbgPOpYoLZ1gJPiLqH6J0.jpg
                        release_date: '2024-12-25'
                        title: Hear Me Love
                        video: false
                        vote_average: 6.5
                        vote_count: 13
                  total_pages:
                    type: number
                    example: 2
                  total_results:
                    type: number
                    example: 40
              examples:
                Recommend:
                  value:
                    page: 1
                    results:
                      - 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: 2924.518
                        poster_path: /nHhjqeJcaQKOBCd21c1kV2DK5gm.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.43
                        vote_count: 508
                      - adult: false
                        backdrop_path: /XNVdWNgiAHu8y4BsJv5ndUHXxN.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: 750.455
                        poster_path: /6BxK38ehxuX2dJmZIMpJcVNbYks.jpg
                        release_date: '2024-12-18'
                        title: 'Wallace & Gromit: Vengeance Most Fowl'
                        video: false
                        vote_average: 7.7
                        vote_count: 179
                      - 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: 2083.288
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 6.989
                        vote_count: 783
                      - adult: false
                        backdrop_path: /k24eZq5I3jyz4htPkZCRpnUmBzE.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: 3009.907
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.136
                        vote_count: 745
                      - adult: false
                        backdrop_path: /7IGWtc6UP1vc7rAg8CRoEW1nSDf.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 10751
                          - 35
                          - 878
                        id: 979296
                        media_type: movie
                        original_language: en
                        original_title: Sonic Drone Home
                        overview: >-
                          Sonic, Tails, and Knuckles encounter an abandoned
                          Badnik drone which upgraded itself using parts from a
                          junkyard, with the intention of conquering the world.
                        popularity: 94.748
                        poster_path: /ifc2YN7eZeHKwaoiT0Xn8LiJCFb.jpg
                        release_date: '2022-05-24'
                        title: Sonic Drone Home
                        video: false
                        vote_average: 7
                        vote_count: 51
                      - 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: 2249.629
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7
                        vote_count: 1889
                      - adult: false
                        backdrop_path: /csQSGH0QU8D3Ov5YLEYuHep8ihA.jpg
                        genre_ids:
                          - 878
                          - 53
                          - 12
                          - 28
                        id: 1196470
                        media_type: movie
                        original_language: fr
                        original_title: Survivre
                        overview: >-
                          A couple celebrates their son’s birthday in the middle
                          of the ocean on their boat. A violent storm hits and
                          it brings up hungry creatures from the depths and they
                          fight for their survival.
                        popularity: 354.45
                        poster_path: /59nsfU5hMG3puDZIGzZzJ1yW8FN.jpg
                        release_date: '2024-06-19'
                        title: Survive
                        video: false
                        vote_average: 5.9
                        vote_count: 94
                      - 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: 262.088
                        poster_path: /A8HbTd0FemZyFCh5qvJFpHGiwF8.jpg
                        release_date: '2024-12-25'
                        title: Babygirl
                        video: false
                        vote_average: 5.7
                        vote_count: 40
                      - adult: false
                        backdrop_path: /lvDvnjlIo5NdUQvNHPAZfB6JgBj.jpg
                        genre_ids:
                          - 53
                          - 9648
                          - 18
                        id: 74525
                        media_type: movie
                        original_language: en
                        original_title: Sleep, My Love
                        overview: >-
                          A woman wakes up in the middle of the night on board a
                          train, but she can't remember how she got there.
                          Danger and suspense ensue.
                        popularity: 4.233
                        poster_path: /9frXdBO5Z8gP0YwNHNt3DhKavBt.jpg
                        release_date: '1948-02-18'
                        title: Sleep, My Love
                        video: false
                        vote_average: 6.4
                        vote_count: 49
                      - adult: false
                        backdrop_path: /9OFqXInG7KF3a7x5r702KCsRePc.jpg
                        genre_ids:
                          - 10770
                          - 35
                          - 10749
                        id: 1180353
                        media_type: movie
                        original_language: en
                        original_title: Journey to Christmas
                        overview: >-
                          While on a charity press tour, a model ends up
                          stranded by the weather at the family home of the
                          driver she hired to assist her for the week.
                        popularity: 6.394
                        poster_path: /1uOomfFceVWkRkSwyR1MDLhiYNx.jpg
                        release_date: '2023-10-29'
                        title: Journey to Christmas
                        video: false
                        vote_average: 7.033
                        vote_count: 15
                      - adult: false
                        backdrop_path: /dzY2ZYyPRbXcw8UOupHK3V5VQYk.jpg
                        genre_ids:
                          - 10749
                        id: 259872
                        media_type: movie
                        original_language: nl
                        original_title: Des jours plus belles que la nuit
                        overview: >-
                          Real-life young couple Wim and Floor spend an
                          afternoon in the sunwashed rooms of a crumbling home
                          in Belgium. In a unique twist, this artistic erotic
                          documentary is edited in nearly real-time. In the
                          slowness, we get the build, the sweetness, and the
                          sexiness. Forget about fingersnapping fast editing.
                          Slow is where it’s at.
                        popularity: 395.224
                        poster_path: /uCkANtG6ezb7hjRKVudY3PUcbvn.jpg
                        release_date: '2010-02-19'
                        title: Skin. Like. Sun.
                        video: false
                        vote_average: 6.4
                        vote_count: 25
                      - adult: false
                        backdrop_path: /5czIa6TUyMrtldHGXVZNEjnjbjC.jpg
                        genre_ids:
                          - 27
                          - 9648
                          - 18
                        id: 1155095
                        media_type: movie
                        original_language: en
                        original_title: The Moor
                        overview: >-
                          Claire is approached by the father of her murdered
                          childhood friend to help investigate the haunted moor
                          he believes is his son's final resting place.
                        popularity: 262.038
                        poster_path: /5l3MJjjCWl8GXXNWC7rCMmaB71g.jpg
                        release_date: '2024-06-14'
                        title: The Moor
                        video: false
                        vote_average: 5.3
                        vote_count: 28
                      - adult: false
                        backdrop_path: /gMr7fjjpY084LdzYsW6blWj5UTa.jpg
                        genre_ids:
                          - 10751
                          - 16
                          - 14
                          - 10770
                        id: 26538
                        media_type: movie
                        original_language: en
                        original_title: Jack Frost
                        overview: >-
                          Pardon-me Pete, the official groundhog of Groundhog
                          Day, tells the story of Jack Frost, who falls in love
                          with a beautiful young woman and begs Father Winter to
                          make him human so that she can see him. His request is
                          granted, but only on the condition that by the Spring
                          he has a house, a bag of gold, a horse and a wife. But
                          Jack finds that life as a human is more complicated
                          than he thought.
                        popularity: 8.925
                        poster_path: /lIuudXPo9vF1Sxsgdv6KXhqae50.jpg
                        release_date: '1979-12-13'
                        title: Jack Frost
                        video: false
                        vote_average: 6.495
                        vote_count: 92
                      - adult: false
                        backdrop_path: /xFsDewuVTcuuWJRvVRMM8Pr24ff.jpg
                        genre_ids:
                          - 16
                          - 35
                        id: 25223
                        media_type: movie
                        original_language: en
                        original_title: Gopher Broke
                        overview: >-
                          A gopher finds himself on a road where trucks are
                          hauling produce to market. He hits on the idea of
                          shaking some of the produce loose for himself, but
                          other animals always beat him to the booty. That is,
                          until a truck comes along with a cow...
                        popularity: 3.419
                        poster_path: /cAXXnuKvqwjswFWd1caSDELteRu.jpg
                        release_date: '2004-11-30'
                        title: Gopher Broke
                        video: false
                        vote_average: 5.8
                        vote_count: 39
                      - adult: false
                        backdrop_path: /h3lW1GzRqwVxfbTAddlNgWY9lNa.jpg
                        genre_ids:
                          - 99
                          - 10402
                        id: 844613
                        media_type: movie
                        original_language: en
                        original_title: Sonic 30th Anniversary Symphony
                        overview: >-
                          30 years ago, on June 23rd, 1991, Sonic the Hedgehog
                          was released on the SEGA Genesis, beginning a new era
                          of gaming.  Since then, Sonic has been running through
                          countless zones, beating badniks, and saving the world
                          with the help of his friends.  This performance is to
                          thank you, all of you, for being there every step of
                          the way, and to remind us all of the amazing journey
                          we've been on.  Happy 30th Anniversary, Sonic!
                        popularity: 24.828
                        poster_path: /nhbXu6nIBV6lP4L93eHi7PJcILE.jpg
                        release_date: '2021-06-23'
                        title: Sonic 30th Anniversary Symphony
                        video: false
                        vote_average: 8.5
                        vote_count: 6
                      - adult: false
                        backdrop_path: /uSmxYmKy163rm7Hr7rjSEVO6ZCc.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1201834
                        media_type: movie
                        original_language: en
                        original_title: Black Santa
                        overview: >-
                          Growing up in the suburbs of Houston, Texas, Stephon
                          and Blake Blanton are happy and come from a loving
                          family. Their Christmas days were filled with gifts
                          and so much joy. All this changes in the blink of an
                          eye, when their lives are suddenly turned upside down,
                          and they end up in the home of Ms. Mary.
                        popularity: 1.546
                        poster_path: /e8L17Erxzr5ErUl8PrgRyDHXpKL.jpg
                        release_date: '2023-11-07'
                        title: Black Santa
                        video: false
                        vote_average: 7
                        vote_count: 2
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 27
                          - 18
                        id: 1398516
                        media_type: movie
                        original_language: en
                        original_title: Where Do Kids Go When They Fall Asleep?
                        overview: >-
                          A group of children in a small town begins vanishing
                          from their beds at night, only to reappear in the
                          morning with terrifying memories they can't fully
                          remember.
                        popularity: 0.078
                        poster_path: /cCnCC7Y9Sv7yLDCKsKc5JvLmgEG.jpg
                        release_date: ''
                        title: Where Do Kids Go When They Fall Asleep?
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /w8N4FfFAPACVO241hjmnbWYlQIE.jpg
                        genre_ids:
                          - 878
                          - 12
                          - 35
                          - 10751
                        id: 1401586
                        media_type: movie
                        original_language: en
                        original_title: Sonic the Hedgehog 4
                        overview: >-
                          The fourth installment in the Sonic the Hedgehog
                          franchise. Plot TBA.
                        popularity: 293.5
                        poster_path: /3ZqRlZG5yK873gONZXO06Oub20C.jpg
                        release_date: ''
                        title: Sonic the Hedgehog 4
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /A2eEFV6b3gmzXZTVAyi5qCp9GP2.jpg
                        genre_ids:
                          - 35
                        id: 77012
                        media_type: movie
                        original_language: en
                        original_title: Mr. Belvedere Goes to College
                        overview: >-
                          A middle-aged genius goes to college for the first
                          time.
                        popularity: 1.253
                        poster_path: /2q5UUR0ytGqMal3brK3T8RrJmcT.jpg
                        release_date: '1949-04-15'
                        title: Mr. Belvedere Goes to College
                        video: false
                        vote_average: 6.7
                        vote_count: 7
                      - adult: false
                        backdrop_path: /s9iFz6ggb9NU6rV7ifOwFjdNT3z.jpg
                        genre_ids:
                          - 35
                          - 10402
                          - 10749
                        id: 1217484
                        media_type: movie
                        original_language: fr
                        original_title: Joli Joli
                        overview: >-
                          Set between Paris and Rome’s Cinecitta’s Studios in
                          the 1970s, a struggling writer seeks inspiration for
                          his second novel, and falls in love with a famous
                          movie star.
                        popularity: 4.828
                        poster_path: /p6pbmOSbgPOpYoLZ1gJPiLqH6J0.jpg
                        release_date: '2024-12-25'
                        title: Hear Me Love
                        video: false
                        vote_average: 6.5
                        vote_count: 13
                    total_pages: 2
                    total_results: 40

````