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

# Popular

> Get a list of people ordered by popularity.



## OpenAPI

````yaml api-reference/openapi.json get /3/person/popular
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/person/popular:
    get:
      tags:
        - People Lists
      summary: Popular
      description: Get a list of people ordered by popularity.
      operationId: popular1
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Popular
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=25531
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 09 Jan 2025 09:27:45 GMT
            ETag:
              schema:
                type: string
                example: W/"5839b5a1c95922dde4df314da94b4eeb"
            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 db0227634f5a6631ffed23eb54e5313e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: CkctJhuT5s1eaim5BMFdgtK-KPEQFiUDDkroyMx8-u7pVjrpwCOYNQ==
            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: '1572'
            x-memc-expires:
              schema:
                type: string
                example: '25531'
            x-memc-key:
              schema:
                type: string
                example: 0dd437779fbb4e548d6bc72bec938687
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        gender:
                          type: number
                          example: 2
                        id:
                          type: number
                          example: 63429
                        known_for:
                          type: array
                          items:
                            type: object
                            properties:
                              adult:
                                type: boolean
                                example: false
                              backdrop_path:
                                type: string
                                example: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                              genre_ids:
                                type: array
                                items:
                                  type: number
                                  example: 18
                                example:
                                  - 18
                                  - 35
                                  - 10749
                              id:
                                type: number
                                example: 11178
                              media_type:
                                type: string
                                example: movie
                              original_language:
                                type: string
                                example: ko
                              original_title:
                                type: string
                                example: 엽기적인 그녀
                              overview:
                                type: string
                                example: >-
                                  A dweeby, mild-mannered man comes to the aid
                                  of a drunk young woman on a subway platform.
                                  Little does he know how much trouble he’s in
                                  for.
                              popularity:
                                type: number
                                example: 15.542
                              poster_path:
                                type: string
                                example: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                              release_date:
                                type: string
                                example: '2001-07-27'
                              title:
                                type: string
                                example: My Sassy Girl
                              video:
                                type: boolean
                                example: false
                              vote_average:
                                type: number
                                example: 7.5
                              vote_count:
                                type: number
                                example: 569
                          example:
                            - adult: false
                              backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                              genre_ids:
                                - 18
                                - 35
                                - 10749
                              id: 11178
                              media_type: movie
                              original_language: ko
                              original_title: 엽기적인 그녀
                              overview: >-
                                A dweeby, mild-mannered man comes to the aid of
                                a drunk young woman on a subway platform. Little
                                does he know how much trouble he’s in for.
                              popularity: 15.542
                              poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                              release_date: '2001-07-27'
                              title: My Sassy Girl
                              video: false
                              vote_average: 7.5
                              vote_count: 569
                            - adult: false
                              backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                              genre_ids:
                                - 18
                                - 10749
                              id: 42190
                              media_type: movie
                              original_language: ko
                              original_title: 클래식
                              overview: >-
                                Ji-hae's friend is having problems expressing
                                her feelings to the boy she loves, so she asks
                                Ji-hae to write e-mails to him in her name. As
                                the boy falls in love with her letters, Ji-hae
                                discovers the story of her mother's romance
                                which is remarkably similar to her own
                                circumstances.
                              popularity: 14.276
                              poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                              release_date: '2003-01-30'
                              title: The Classic
                              video: false
                              vote_average: 7.6
                              vote_count: 158
                            - adult: false
                              backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                              genre_ids:
                                - 35
                                - 10749
                              id: 821661
                              media_type: movie
                              original_language: ko
                              original_title: 해피 뉴 이어
                              overview: >-
                                A romantic comedy of a young man and woman that
                                is told in the background of hotel 'Emross'. It
                                has stories of people who met each other at
                                Hotel Emross during the New Year holidays. Each
                                one has his own memory to relate and create
                                relationships or just going nostalgic.
                              popularity: 11.076
                              poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                              release_date: '2021-12-29'
                              title: A Year-End Medley
                              video: false
                              vote_average: 7.1
                              vote_count: 142
                        known_for_department:
                          type: string
                          example: Directing
                        name:
                          type: string
                          example: Kwak Jae-yong
                        original_name:
                          type: string
                          example: 곽재용
                        popularity:
                          type: number
                          example: 458.071
                        profile_path:
                          type: string
                          example: /oTpZ0Ek4qoI8U0tRIViUhgfB05b.jpg
                    example:
                      - adult: false
                        gender: 2
                        id: 63429
                        known_for:
                          - adult: false
                            backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                            genre_ids:
                              - 18
                              - 35
                              - 10749
                            id: 11178
                            media_type: movie
                            original_language: ko
                            original_title: 엽기적인 그녀
                            overview: >-
                              A dweeby, mild-mannered man comes to the aid of a
                              drunk young woman on a subway platform. Little
                              does he know how much trouble he’s in for.
                            popularity: 15.542
                            poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                            release_date: '2001-07-27'
                            title: My Sassy Girl
                            video: false
                            vote_average: 7.5
                            vote_count: 569
                          - adult: false
                            backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                            genre_ids:
                              - 18
                              - 10749
                            id: 42190
                            media_type: movie
                            original_language: ko
                            original_title: 클래식
                            overview: >-
                              Ji-hae's friend is having problems expressing her
                              feelings to the boy she loves, so she asks Ji-hae
                              to write e-mails to him in her name. As the boy
                              falls in love with her letters, Ji-hae discovers
                              the story of her mother's romance which is
                              remarkably similar to her own circumstances.
                            popularity: 14.276
                            poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                            release_date: '2003-01-30'
                            title: The Classic
                            video: false
                            vote_average: 7.6
                            vote_count: 158
                          - adult: false
                            backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                            genre_ids:
                              - 35
                              - 10749
                            id: 821661
                            media_type: movie
                            original_language: ko
                            original_title: 해피 뉴 이어
                            overview: >-
                              A romantic comedy of a young man and woman that is
                              told in the background of hotel 'Emross'. It has
                              stories of people who met each other at Hotel
                              Emross during the New Year holidays. Each one has
                              his own memory to relate and create relationships
                              or just going nostalgic.
                            popularity: 11.076
                            poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                            release_date: '2021-12-29'
                            title: A Year-End Medley
                            video: false
                            vote_average: 7.1
                            vote_count: 142
                        known_for_department: Directing
                        name: Kwak Jae-yong
                        original_name: 곽재용
                        popularity: 458.071
                        profile_path: /oTpZ0Ek4qoI8U0tRIViUhgfB05b.jpg
                      - adult: false
                        gender: 1
                        id: 2527414
                        known_for:
                          - adult: false
                            backdrop_path: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                            genre_ids:
                              - 10749
                              - 18
                            id: 1010581
                            media_type: movie
                            original_language: es
                            original_title: Culpa mía
                            overview: >-
                              Noah must leave her city, boyfriend, and friends
                              to move into William Leister's mansion, the flashy
                              and wealthy husband of her mother Rafaela. As a
                              proud and independent 17 year old, Noah resists
                              living in a mansion surrounded by luxury. However,
                              it is there where she meets Nick, her new
                              stepbrother, and the clash of their strong
                              personalities becomes evident from the very
                              beginning.
                            popularity: 934.231
                            poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                            release_date: '2023-06-08'
                            title: My Fault
                            video: false
                            vote_average: 7.893
                            vote_count: 3341
                          - 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: 2623.666
                            poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                            release_date: '2024-12-26'
                            title: Your Fault
                            video: false
                            vote_average: 7.12
                            vote_count: 754
                          - adult: false
                            backdrop_path: /ieiq46OoeTrLkjtclmhii6iRyzP.jpg
                            first_air_date: '2024-05-31'
                            genre_ids:
                              - 18
                            id: 242876
                            media_type: tv
                            name: Raising Voices
                            origin_country:
                              - ES
                            original_language: es
                            original_name: Ni una más
                            overview: >-
                              When a 17-year-old reports a sexual assault at her
                              high school, an investigation upends her life and
                              tests her relationships.
                            popularity: 246.773
                            poster_path: /lCU77Jp0iWN2e1WuSJvR7M35ebN.jpg
                            vote_average: 7.795
                            vote_count: 351
                        known_for_department: Acting
                        name: Nicole Wallace
                        original_name: Nicole Wallace
                        popularity: 244.446
                        profile_path: /xlvq6OYCN6yQef4fpJQtwVyQxqr.jpg
                      - adult: false
                        gender: 1
                        id: 20652
                        known_for:
                          - adult: false
                            backdrop_path: /AwlJ2bQGjfEuXLsL5XJAaxOmMuV.jpg
                            genre_ids:
                              - 14
                              - 18
                              - 28
                              - 53
                              - 10749
                            id: 2008
                            media_type: movie
                            original_language: zh
                            original_title: 无极
                            overview: >-
                              An orphaned girl, driven by poverty at such a
                              young age, makes a promise with an enchantress. In
                              return for beauty and the admiration of every man,
                              she will never be with the man she loves. This
                              spell cannot be broken unless the impossible
                              happens: snow falling in spring and the dead
                              coming back to life. Now a grown and beautiful
                              princess, she regrets her promise, for all of the
                              men she's loved has always been met with tragedy.
                            popularity: 16.398
                            poster_path: /tdm4mlc27S1d72ub4Y4xcU2OlDD.jpg
                            release_date: '2005-12-15'
                            title: The Promise
                            video: false
                            vote_average: 5.6
                            vote_count: 115
                          - adult: false
                            backdrop_path: /lMRX4cLx4hxYth3iQ96c0E1RHGB.jpg
                            genre_ids:
                              - 28
                              - 35
                            id: 11770
                            media_type: movie
                            original_language: cn
                            original_title: 少林足球
                            overview: >-
                              A young Shaolin follower reunites with his
                              discouraged brothers to form a soccer team using
                              their martial art skills to their advantage.
                            popularity: 48.648
                            poster_path: /ppgeawDWa4rehYYRidWCqg4kOli.jpg
                            release_date: '2001-07-05'
                            title: Shaolin Soccer
                            video: false
                            vote_average: 7.1
                            vote_count: 2262
                          - adult: false
                            backdrop_path: /fGzO3qGIaBlLlW53fsaRSUPEjw0.jpg
                            genre_ids:
                              - 35
                              - 18
                              - 10749
                            id: 53168
                            media_type: movie
                            original_language: cn
                            original_title: 喜劇之王
                            overview: >-
                              Wan Tin-Sau is an actor who cannot seem to catch a
                              break, since his only professional jobs are
                              limited to being a movie extra. As well as being
                              an actor, he is also the head of his village's
                              community center.
                            popularity: 10.336
                            poster_path: /dmJWvKNgeCrIwJH6AapdSMiZHop.jpg
                            release_date: '1999-02-08'
                            title: King of Comedy
                            video: false
                            vote_average: 7.3
                            vote_count: 174
                        known_for_department: Acting
                        name: Cecilia Cheung
                        original_name: 張柏芝
                        popularity: 234.574
                        profile_path: /xghVxRPUmFCHYxzD0NxMO8NtoKK.jpg
                      - adult: false
                        gender: 2
                        id: 2786960
                        known_for:
                          - adult: false
                            backdrop_path: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                            genre_ids:
                              - 10749
                              - 18
                            id: 1010581
                            media_type: movie
                            original_language: es
                            original_title: Culpa mía
                            overview: >-
                              Noah must leave her city, boyfriend, and friends
                              to move into William Leister's mansion, the flashy
                              and wealthy husband of her mother Rafaela. As a
                              proud and independent 17 year old, Noah resists
                              living in a mansion surrounded by luxury. However,
                              it is there where she meets Nick, her new
                              stepbrother, and the clash of their strong
                              personalities becomes evident from the very
                              beginning.
                            popularity: 934.231
                            poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                            release_date: '2023-06-08'
                            title: My Fault
                            video: false
                            vote_average: 7.893
                            vote_count: 3341
                          - adult: false
                            backdrop_path: /ieiq46OoeTrLkjtclmhii6iRyzP.jpg
                            first_air_date: '2024-05-31'
                            genre_ids:
                              - 18
                            id: 242876
                            media_type: tv
                            name: Raising Voices
                            origin_country:
                              - ES
                            original_language: es
                            original_name: Ni una más
                            overview: >-
                              When a 17-year-old reports a sexual assault at her
                              high school, an investigation upends her life and
                              tests her relationships.
                            popularity: 246.773
                            poster_path: /lCU77Jp0iWN2e1WuSJvR7M35ebN.jpg
                            vote_average: 7.795
                            vote_count: 351
                          - adult: false
                            backdrop_path: /kxxJBjQAwhQXTtJTRe0qursHuDH.jpg
                            first_air_date: '2024-06-12'
                            genre_ids:
                              - 18
                              - 9648
                            id: 249670
                            media_type: tv
                            name: From Tomorrow
                            origin_country:
                              - ES
                            original_language: es
                            original_name: Desde el mañana
                            overview: >-
                              Gabriela and Andrés, a doctor and a detective,
                              must face a series of supernatural phenomena that
                              disrupt their lives and those of their loved ones.
                              Together, they have the opportunity to change
                              their destinies.
                            popularity: 42.425
                            poster_path: /tsaOWbVklGlGhMxRcRqPEi5QZIW.jpg
                            vote_average: 7.2
                            vote_count: 63
                        known_for_department: Acting
                        name: Gabriel Guevara
                        original_name: Gabriel Guevara
                        popularity: 215.867
                        profile_path: /pviRYKEEmoPUfLYwP1VHJ6LQcRg.jpg
                      - adult: false
                        gender: 1
                        id: 550627
                        known_for:
                          - adult: false
                            backdrop_path: /scMU7yDvzZdqpqb24WcuQB0i4fb.jpg
                            genre_ids:
                              - 28
                              - 53
                              - 80
                              - 35
                            id: 36282
                            media_type: movie
                            original_language: ja
                            original_title: 極道戦国志 不動
                            overview: >-
                              In order to settle a business dispute, a mob
                              leader murders one of his own teenage sons. The
                              surviving son vows to avenge his brother's death,
                              and organizes his own gang of teenage killers to
                              destroy his father's organization.
                            popularity: 7.135
                            poster_path: /kRlmTuDdZEGPbbXavNmiafUYYka.jpg
                            release_date: '1996-10-12'
                            title: 'Fudoh: The New Generation'
                            video: false
                            vote_average: 6.6
                            vote_count: 64
                          - adult: false
                            backdrop_path: /1XUjqfCCgoqGiJYV6hfPlHOxC59.jpg
                            genre_ids:
                              - 28
                              - 18
                              - 53
                            id: 36274
                            media_type: movie
                            original_language: ja
                            original_title: 実録・安藤昇侠道（アウトロー）伝 烈火
                            overview: >-
                              After Kunisada's Yakuza leader and father figure
                              is brutally murdered, he and his best friend go on
                              a two-man mission to avenge his death, killing
                              other Yakuza leaders leading to a final
                              confrontation by the old man's killers.
                            popularity: 3.493
                            poster_path: /2r4WNCpwAQzekbaZwoCcOv1GJuO.jpg
                            release_date: '2002-09-21'
                            title: 'Deadly Outlaw: Rekka'
                            video: false
                            vote_average: 6.7
                            vote_count: 28
                          - adult: false
                            backdrop_path: null
                            genre_ids:
                              - 18
                            id: 792589
                            media_type: movie
                            original_language: cn
                            original_title: 女歡
                            overview: Female modeling and lesbian interest
                            popularity: 5.097
                            poster_path: /6owpqEOBcnDJ6r6GEoV4xZcdolo.jpg
                            release_date: '1998-01-01'
                            title: Intimate Desire
                            video: false
                            vote_average: 1.5
                            vote_count: 2
                        known_for_department: Acting
                        name: Miho Nomoto
                        original_name: 野本美穂
                        popularity: 206.638
                        profile_path: /ego6I5PWMZRJGYyu8aPjiNwsz3l.jpg
                      - adult: false
                        gender: 2
                        id: 3724154
                        known_for:
                          - adult: false
                            backdrop_path: /9ExqMvtOqvYcmQjMDXyhtfjLmEA.jpg
                            genre_ids:
                              - 18
                              - 10749
                            id: 1232449
                            media_type: movie
                            original_language: nl
                            original_title: Young Hearts
                            overview: >-
                              Fourteen-year-old Elias increasingly feels like an
                              outsider in his village. When he meets his new
                              neighbour of the same age, Alexander, Elias is
                              confronted with his burgeoning sexuality.
                            popularity: 142.2
                            poster_path: /iGCtYxfuvXfy0BD5m6p7vKuPOxS.jpg
                            release_date: '2024-10-26'
                            title: Young Hearts
                            video: false
                            vote_average: 8.3
                            vote_count: 27
                          - adult: false
                            backdrop_path: /xbb0AzHP1B7vJ2LiN7ARLNe3RwZ.jpg
                            first_air_date: '2023-08-18'
                            genre_ids:
                              - 35
                            id: 229685
                            media_type: tv
                            name: Boomer
                            origin_country:
                              - BE
                            original_language: nl
                            original_name: Boomer
                            overview: ''
                            popularity: 13.389
                            poster_path: /bZAKLGZk3gqCbdBhcfrnBp0LuwS.jpg
                            vote_average: 10
                            vote_count: 1
                          - adult: false
                            backdrop_path: /xANGcChEgQJLHMdiLwOLxWebvbs.jpg
                            genre_ids:
                              - 18
                            id: 1030955
                            media_type: movie
                            original_language: nl
                            original_title: Alleen Ik
                            overview: >-
                              Longing for acceptance, a neurodivergent boy
                              taunts the boundaries of his best friend: his
                              brother.
                            popularity: 17.411
                            poster_path: /qUzwUif6WybmpH6t4MA26hkdUI5.jpg
                            release_date: '2022-11-05'
                            title: Alleen Ik (Only me, me alone)
                            video: false
                            vote_average: 6
                            vote_count: 2
                        known_for_department: Acting
                        name: Lou Goossens
                        original_name: Lou Goossens
                        popularity: 189.608
                        profile_path: /kY8eifhCPvjTE6JJclrrWO7Zr9L.jpg
                      - adult: false
                        gender: 2
                        id: 1190668
                        known_for:
                          - adult: false
                            backdrop_path: /h3HsfV8Kn9Sz2QWUYYdP5ya23hx.jpg
                            genre_ids:
                              - 878
                              - 12
                            id: 438631
                            media_type: movie
                            original_language: en
                            original_title: Dune
                            overview: >-
                              Paul Atreides, a brilliant and gifted young man
                              born into a great destiny beyond his
                              understanding, must travel to the most dangerous
                              planet in the universe to ensure the future of his
                              family and his people. As malevolent forces
                              explode into conflict over the planet's exclusive
                              supply of the most precious resource in
                              existence-a commodity capable of unlocking
                              humanity's greatest potential-only those who can
                              conquer their fear will survive.
                            popularity: 158.163
                            poster_path: /d5NXSklXo0qyIYkgV94XAgMIckC.jpg
                            release_date: '2021-09-15'
                            title: Dune
                            video: false
                            vote_average: 7.786
                            vote_count: 12958
                          - adult: false
                            backdrop_path: /zvOJawrnmgK0sL293mOXOdLvTXQ.jpg
                            genre_ids:
                              - 10749
                              - 18
                            id: 398818
                            media_type: movie
                            original_language: en
                            original_title: Call Me by Your Name
                            overview: >-
                              In 1980s Italy, a relationship begins between
                              seventeen-year-old teenage Elio and the older
                              adult man hired as his father's research
                              assistant.
                            popularity: 65.784
                            poster_path: /mZ4gBdfkhP9tvLH1DO4m4HYtiyi.jpg
                            release_date: '2017-07-28'
                            title: Call Me by Your Name
                            video: false
                            vote_average: 8.1
                            vote_count: 12117
                          - adult: false
                            backdrop_path: /rRBD8ORo9y34tYkAQJVbn4Ml6tu.jpg
                            genre_ids:
                              - 878
                              - 12
                            id: 693134
                            media_type: movie
                            original_language: en
                            original_title: 'Dune: Part Two'
                            overview: >-
                              Follow the mythic journey of Paul Atreides as he
                              unites with Chani and the Fremen while on a path
                              of revenge against the conspirators who destroyed
                              his family. Facing a choice between the love of
                              his life and the fate of the known universe, Paul
                              endeavors to prevent a terrible future only he can
                              foresee.
                            popularity: 214.432
                            poster_path: /6izwz7rsy95ARzTR3poZ8H6c5pp.jpg
                            release_date: '2024-02-27'
                            title: 'Dune: Part Two'
                            video: false
                            vote_average: 8.2
                            vote_count: 5969
                        known_for_department: Acting
                        name: Timothée Chalamet
                        original_name: Timothée Chalamet
                        popularity: 178.008
                        profile_path: /BE2sdjpgsa2rNTFa66f7upkaOP.jpg
                      - adult: false
                        gender: 2
                        id: 6384
                        known_for:
                          - adult: false
                            backdrop_path: /icmmSD4vTTDKOq2vvdulafOGw93.jpg
                            genre_ids:
                              - 28
                              - 878
                            id: 603
                            media_type: movie
                            original_language: en
                            original_title: The Matrix
                            overview: >-
                              Set in the 22nd century, The Matrix tells the
                              story of a computer hacker who joins a group of
                              underground insurgents fighting the vast and
                              powerful computers who now rule the earth.
                            popularity: 146.223
                            poster_path: /dXNAPwY7VrqMAo51EKhhCJfaGb5.jpg
                            release_date: '1999-03-31'
                            title: The Matrix
                            video: false
                            vote_average: 8.2
                            vote_count: 25858
                          - adult: false
                            backdrop_path: /eD7FnB7LLrBV5ewjdGLYTAoV9Mv.jpg
                            genre_ids:
                              - 28
                              - 53
                            id: 245891
                            media_type: movie
                            original_language: en
                            original_title: John Wick
                            overview: >-
                              Ex-hitman John Wick comes out of retirement to
                              track down the gangsters that took everything from
                              him.
                            popularity: 77.521
                            poster_path: /fZPSd91yGE9fCcCe6OoQr6E3Bev.jpg
                            release_date: '2014-10-22'
                            title: John Wick
                            video: false
                            vote_average: 7.441
                            vote_count: 19312
                          - adult: false
                            backdrop_path: /r17jFHAemzcWPPtoO0UxjIX0xas.jpg
                            genre_ids:
                              - 28
                              - 53
                              - 80
                            id: 324552
                            media_type: movie
                            original_language: en
                            original_title: 'John Wick: Chapter 2'
                            overview: >-
                              John Wick is forced out of retirement by a former
                              associate looking to seize control of a shadowy
                              international assassins’ guild. Bound by a blood
                              oath to aid him, Wick travels to Rome and does
                              battle against some of the world’s most dangerous
                              killers.
                            popularity: 93.851
                            poster_path: /hXWBc0ioZP3cN4zCu6SN3YHXZVO.jpg
                            release_date: '2017-02-08'
                            title: 'John Wick: Chapter 2'
                            video: false
                            vote_average: 7.3
                            vote_count: 13117
                        known_for_department: Acting
                        name: Keanu Reeves
                        original_name: Keanu Reeves
                        popularity: 169.411
                        profile_path: /8RZLOyYGsoRe9p44q3xin9QkMHv.jpg
                      - adult: false
                        gender: 2
                        id: 80981
                        known_for:
                          - adult: false
                            backdrop_path: /alo20exRRwPj1vhqrjbmaee9op9.jpg
                            genre_ids:
                              - 18
                              - 28
                              - 53
                            id: 235704
                            media_type: movie
                            original_language: ko
                            original_title: 동창생
                            overview: >-
                              The son of a North Korean spy decides to follow in
                              his father's footsteps to protect his little
                              sister. After his father's botched espionage
                              mission, North Korean Myung-hoon and his young
                              sister Hye-in are sent to a labor prison camp. In
                              order to save his sister's life, Myung-hoon
                              volunteers to become a spy and infiltrates the
                              South as a teenage defector. While attending high
                              school in the South, he meets another girl named
                              Hye-in, and rescues her when she comes under
                              attack.
                            popularity: 17.66
                            poster_path: /ybM400b3vesnoNzOlTlAmHeEYPq.jpg
                            release_date: '2013-11-05'
                            title: Commitment
                            video: false
                            vote_average: 7.221
                            vote_count: 122
                          - adult: false
                            backdrop_path: /pPcgtojMTIMkRT9I6wacHBxpnyW.jpg
                            genre_ids:
                              - 10752
                            id: 51200
                            media_type: movie
                            original_language: ko
                            original_title: 포화 속으로
                            overview: >-
                              In August 1950, waiting for UN troops to arrive,
                              the South Korean army assembled to protect Nakdong
                              River. Only 71 student-soldiers are left behind to
                              guard the city of Pohang. Now they are on a
                              mission to defend the country from North Korean
                              troops.
                            popularity: 16.436
                            poster_path: /3p8nZAGiw8LT8TFpYOn7uoTUdvI.jpg
                            release_date: '2010-06-16'
                            title: '71: Into the Fire'
                            video: false
                            vote_average: 7.5
                            vote_count: 188
                          - adult: false
                            backdrop_path: /tW8H0Bn1vptVAS2SZASmkkl2K5P.jpg
                            genre_ids:
                              - 80
                              - 18
                            id: 290865
                            media_type: movie
                            original_language: ko
                            original_title: '타짜: 신의 손'
                            overview: >-
                              Dae-gil has been skilled with his hands and has
                              shown a strong desire for winning ever since he
                              was a child. He will succeed his uncle and jump
                              into the world of Tazza, risking his life in
                              competition.
                            popularity: 25.813
                            poster_path: /lWiOBlD8NSuOJRQAZHOzPRFrwa5.jpg
                            release_date: '2014-09-03'
                            title: 'Tazza: The Hidden Card'
                            video: false
                            vote_average: 7
                            vote_count: 85
                        known_for_department: Acting
                        name: Choi Seung-hyun
                        original_name: 최승현
                        popularity: 166.725
                        profile_path: /TVMPz9YPf4eVtd2up9kZnUMzQn.jpg
                      - adult: false
                        gender: 1
                        id: 115440
                        known_for:
                          - adult: false
                            backdrop_path: /9KnIzPCv9XpWA0MqmwiKBZvV1Sj.jpg
                            first_air_date: '2019-06-16'
                            genre_ids:
                              - 18
                            id: 85552
                            media_type: tv
                            name: Euphoria
                            origin_country:
                              - US
                            original_language: en
                            original_name: Euphoria
                            overview: >-
                              A group of high school students navigate love and
                              friendships in a world of drugs, sex, trauma, and
                              social media.
                            popularity: 335.053
                            poster_path: /3Q0hd3heuWwDWpwcDkhQOA6TYWI.jpg
                            vote_average: 8.31
                            vote_count: 9830
                          - adult: false
                            backdrop_path: /j9eOeLlTGoHoM8BNUJVNyWmIvCi.jpg
                            genre_ids:
                              - 10749
                              - 35
                            id: 1072790
                            media_type: movie
                            original_language: en
                            original_title: Anyone But You
                            overview: >-
                              After an amazing first date, Bea and Ben’s fiery
                              attraction turns ice cold — until they find
                              themselves unexpectedly reunited at a destination
                              wedding in Australia. So they do what any two
                              mature adults would do: pretend to be a couple.
                            popularity: 90.924
                            poster_path: /5qHoazZiaLe7oFBok7XlUhg96f2.jpg
                            release_date: '2023-12-21'
                            title: Anyone But You
                            video: false
                            vote_average: 6.923
                            vote_count: 2325
                          - adult: false
                            backdrop_path: /5Eip60UDiPLASyKjmHPMruggTc4.jpg
                            genre_ids:
                              - 27
                              - 9648
                              - 53
                            id: 1041613
                            media_type: movie
                            original_language: en
                            original_title: Immaculate
                            overview: >-
                              An American nun embarks on a new journey when she
                              joins a remote convent in the Italian countryside.
                              However, her warm welcome quickly turns into a
                              living nightmare when she discovers her new home
                              harbours a sinister secret and unspeakable
                              horrors.
                            popularity: 83.347
                            poster_path: /fdZpvODTX5wwkD0ikZNaClE4AoW.jpg
                            release_date: '2024-03-20'
                            title: Immaculate
                            video: false
                            vote_average: 6.3
                            vote_count: 1293
                        known_for_department: Acting
                        name: Sydney Sweeney
                        original_name: Sydney Sweeney
                        popularity: 165.294
                        profile_path: /qYiaSl0Eb7G3VaxOg8PxExCFwon.jpg
                      - adult: false
                        gender: 2
                        id: 1862434
                        known_for:
                          - adult: false
                            backdrop_path: /aWas3hZ8DKvfKxLe3dQVpB758eA.jpg
                            genre_ids:
                              - 10749
                              - 35
                            id: 502292
                            media_type: movie
                            original_language: en
                            original_title: The Last Summer
                            overview: >-
                              Standing on the precipice of adulthood, a group of
                              friends navigate new relationships, while
                              reexamining others, during their final summer
                              before college.
                            popularity: 15.693
                            poster_path: /nAn3MRAUwbjVApN3qYkvsTEOAvx.jpg
                            release_date: '2019-05-03'
                            title: The Last Summer
                            video: false
                            vote_average: 6.011
                            vote_count: 1368
                          - adult: false
                            backdrop_path: /lMjY6kMBOHhloz2Ul16fLJn8xuw.jpg
                            genre_ids:
                              - 18
                              - 10752
                            id: 591538
                            media_type: movie
                            original_language: en
                            original_title: The Tragedy of Macbeth
                            overview: >-
                              Macbeth, the Thane of Glamis, receives a prophecy
                              from a trio of witches that one day he will become
                              King of Scotland. Consumed by ambition and spurred
                              to action by his wife, Macbeth murders his king
                              and takes the throne for himself.
                            popularity: 15.254
                            poster_path: /tDNJEhcLbX3jIk3BMCur9pCdaVD.jpg
                            release_date: '2021-12-05'
                            title: The Tragedy of Macbeth
                            video: false
                            vote_average: 6.9
                            vote_count: 755
                          - adult: false
                            backdrop_path: /hGdTq9BX3DB2gwGGFMLTdipCBPk.jpg
                            first_air_date: '2022-10-30'
                            genre_ids:
                              - 18
                              - 10768
                            id: 93870
                            media_type: tv
                            name: SAS Rogue Heroes
                            origin_country:
                              - GB
                            original_language: en
                            original_name: SAS Rogue Heroes
                            overview: >-
                              The dramatised account of how the world’s greatest
                              Special Forces unit, the SAS, was formed under
                              extraordinary circumstances in the darkest days of
                              World War Two.
                            popularity: 86.86
                            poster_path: /qEaxiDrPaTY34eIg6naXMfM2IKC.jpg
                            vote_average: 7.7
                            vote_count: 92
                        known_for_department: Acting
                        name: Jacob McCarthy
                        original_name: Jacob McCarthy
                        popularity: 158.943
                        profile_path: /kU6N4Z2L7f3mFeSZnrnmFE0k4ZZ.jpg
                      - adult: false
                        gender: 2
                        id: 500
                        known_for:
                          - adult: false
                            backdrop_path: /4V1yIoAKPMRQwGBaSses8Bp2nsi.jpg
                            genre_ids:
                              - 28
                              - 878
                            id: 137113
                            media_type: movie
                            original_language: en
                            original_title: Edge of Tomorrow
                            overview: >-
                              Major Bill Cage is an officer who has never seen a
                              day of combat when he is unceremoniously demoted
                              and dropped into combat. Cage is killed within
                              minutes, managing to take an alpha alien down with
                              him. He awakens back at the beginning of the same
                              day and is forced to fight and die again... and
                              again - as physical contact with the alien has
                              thrown him into a time loop.
                            popularity: 73.243
                            poster_path: /uUHvlkLavotfGsNtosDy8ShsIYF.jpg
                            release_date: '2014-05-27'
                            title: Edge of Tomorrow
                            video: false
                            vote_average: 7.627
                            vote_count: 13896
                          - adult: false
                            backdrop_path: /sbkYWB5QcfT00gLUkbNE5LTdhIX.jpg
                            genre_ids:
                              - 28
                              - 878
                              - 12
                              - 9648
                            id: 75612
                            media_type: movie
                            original_language: en
                            original_title: Oblivion
                            overview: >-
                              Jack Harper is one of the last few drone repairmen
                              stationed on Earth. Part of a massive operation to
                              extract vital resources after decades of war with
                              a terrifying threat known as the Scavs, Jack’s
                              mission is nearly complete. His existence is
                              brought crashing down when he rescues a beautiful 
                              stranger from a downed spacecraft. Her arrival
                              triggers a chain of events that  forces him to
                              question everything he knows and puts the fate of
                              humanity in his hands.
                            popularity: 60.779
                            poster_path: /5Onf4TW3mZn3oLeKVr9W4FGomQQ.jpg
                            release_date: '2013-04-10'
                            title: Oblivion
                            video: false
                            vote_average: 6.7
                            vote_count: 10693
                          - adult: false
                            backdrop_path: /ih4lZkUpmSE7AP3maymiO72xJ1z.jpg
                            genre_ids:
                              - 28
                              - 53
                              - 12
                            id: 56292
                            media_type: movie
                            original_language: en
                            original_title: 'Mission: Impossible - Ghost Protocol'
                            overview: >-
                              Ethan Hunt and his team are racing against time to
                              track down a dangerous terrorist named Hendricks,
                              who has gained access to Russian nuclear launch
                              codes and is planning a strike on the United
                              States. An attempt to stop him ends in an
                              explosion causing severe destruction to the
                              Kremlin and the IMF to be implicated in the
                              bombing, forcing the President to disavow them. No
                              longer being aided by the government, Ethan and
                              his team chase Hendricks around the globe,
                              although they might still be too late to stop a
                              disaster.
                            popularity: 57.219
                            poster_path: /eRZTGx7GsiKqPch96k27LK005ZL.jpg
                            release_date: '2011-12-07'
                            title: 'Mission: Impossible - Ghost Protocol'
                            video: false
                            vote_average: 7.092
                            vote_count: 9907
                        known_for_department: Acting
                        name: Tom Cruise
                        original_name: Tom Cruise
                        popularity: 154.514
                        profile_path: /eOh4ubpOm2Igdg0QH2ghj0mFtC.jpg
                      - adult: false
                        gender: 2
                        id: 64
                        known_for:
                          - adult: false
                            backdrop_path: /y2DB71C4nyIdMrANijz8mzvQtk6.jpg
                            genre_ids:
                              - 28
                              - 80
                              - 18
                              - 53
                            id: 49026
                            media_type: movie
                            original_language: en
                            original_title: The Dark Knight Rises
                            overview: >-
                              Following the death of District Attorney Harvey
                              Dent, Batman assumes responsibility for Dent's
                              crimes to protect the late attorney's reputation
                              and is subsequently hunted by the Gotham City
                              Police Department. Eight years later, Batman
                              encounters the mysterious Selina Kyle and the
                              villainous Bane, a new terrorist leader who
                              overwhelms Gotham's finest. The Dark Knight
                              resurfaces to protect a city that has branded him
                              an enemy.
                            popularity: 70.487
                            poster_path: /hr0L2aueqlP2BYUblTTjmtn0hw4.jpg
                            release_date: '2012-07-17'
                            title: The Dark Knight Rises
                            video: false
                            vote_average: 7.784
                            vote_count: 22843
                          - adult: false
                            backdrop_path: /x5f2uTfw0Pqc5QI4ch5AHICee2o.jpg
                            genre_ids:
                              - 18
                              - 28
                              - 80
                              - 53
                            id: 155
                            media_type: movie
                            original_language: en
                            original_title: The Dark Knight
                            overview: >-
                              Batman raises the stakes in his war on crime. With
                              the help of Lt. Jim Gordon and District Attorney
                              Harvey Dent, Batman sets out to dismantle the
                              remaining criminal organizations that plague the
                              streets. The partnership proves to be effective,
                              but they soon find themselves prey to a reign of
                              chaos unleashed by a rising criminal mastermind
                              known to the terrified citizens of Gotham as the
                              Joker.
                            popularity: 130.7
                            poster_path: /qJ2tW6WMUDux911r6m7haRef0WH.jpg
                            release_date: '2008-07-16'
                            title: The Dark Knight
                            video: false
                            vote_average: 8.518
                            vote_count: 33177
                          - adult: false
                            backdrop_path: /tyBkBHKDrJyVUeCs550kMr61jnq.jpg
                            genre_ids:
                              - 10749
                              - 27
                            id: 6114
                            media_type: movie
                            original_language: en
                            original_title: Bram Stoker's Dracula
                            overview: >-
                              In 19th century England, Count Dracula travels to
                              London and meets Mina Harker, a young woman who
                              appears as the reincarnation of his lost love.
                            popularity: 49.916
                            poster_path: /scFDS0U5uYAjcVTyjNc7GmcZw1q.jpg
                            release_date: '1992-11-13'
                            title: Bram Stoker's Dracula
                            video: false
                            vote_average: 7.5
                            vote_count: 5155
                        known_for_department: Acting
                        name: Gary Oldman
                        original_name: Gary Oldman
                        popularity: 153.196
                        profile_path: /2v9FVVBUrrkW2m3QOcYkuhq9A6o.jpg
                      - adult: false
                        gender: 1
                        id: 974169
                        known_for:
                          - adult: false
                            backdrop_path: /iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg
                            first_air_date: '2022-11-23'
                            genre_ids:
                              - 10765
                              - 9648
                              - 35
                            id: 119051
                            media_type: tv
                            name: Wednesday
                            origin_country:
                              - US
                            original_language: en
                            original_name: Wednesday
                            overview: >-
                              Wednesday Addams is sent to Nevermore Academy, a
                              bizarre boarding school where she attempts to
                              master her psychic powers, stop a monstrous
                              killing spree of the town citizens, and solve the
                              supernatural mystery that affected her family 25
                              years ago — all while navigating her new
                              relationships.
                            popularity: 271.953
                            poster_path: /9PFonBhy4cQy7Jz20NpMygczOkv.jpg
                            vote_average: 8.4
                            vote_count: 8771
                          - adult: false
                            backdrop_path: /ifUfE79O1raUwbaQRIB7XnFz5ZC.jpg
                            genre_ids:
                              - 27
                              - 9648
                            id: 646385
                            media_type: movie
                            original_language: en
                            original_title: Scream
                            overview: >-
                              Twenty-five years after a streak of brutal murders
                              shocked the quiet town of Woodsboro, a new killer
                              has donned the Ghostface mask and begins targeting
                              a group of teenagers to resurrect secrets from the
                              town’s deadly past.
                            popularity: 110.29
                            poster_path: /1m3W6cpgwuIyjtg5nSnPx7yFkXW.jpg
                            release_date: '2022-01-12'
                            title: Scream
                            video: false
                            vote_average: 6.672
                            vote_count: 3336
                          - adult: false
                            backdrop_path: /70Rm9ItxKuEKN8iu6rNjfwAYUCJ.jpg
                            genre_ids:
                              - 27
                              - 9648
                              - 53
                            id: 760104
                            media_type: movie
                            original_language: en
                            original_title: X
                            overview: >-
                              In 1979, a group of young filmmakers set out to
                              make an adult film in rural Texas, but when their
                              reclusive, elderly hosts catch them in the act,
                              the cast find themselves fighting for their lives.
                            popularity: 77.426
                            poster_path: /lopZSVtXzhFY603E9OqF7O1YKsh.jpg
                            release_date: '2022-03-17'
                            title: X
                            video: false
                            vote_average: 6.753
                            vote_count: 3327
                        known_for_department: Acting
                        name: Jenna Ortega
                        original_name: Jenna Ortega
                        popularity: 151.535
                        profile_path: /q1NRzyZQlYkxLY07GO9NVPkQnu8.jpg
                      - adult: false
                        gender: 1
                        id: 1902690
                        known_for:
                          - adult: false
                            backdrop_path: /3Z8TQeeB4wC5zEXw4XugyO0upLV.jpg
                            genre_ids:
                              - 27
                              - 10770
                            id: 480157
                            media_type: movie
                            original_language: en
                            original_title: House of the Witch
                            overview: >-
                              A group of high-school kids set out to play a
                              Halloween prank at an abandoned house, but once
                              they enter they become victims of a demonic witch
                              who has set her wrath upon them.
                            popularity: 6.614
                            poster_path: /fSvhp22gCoHgFMDSnyhrmlo3M0k.jpg
                            release_date: '2017-10-07'
                            title: House of the Witch
                            video: false
                            vote_average: 4.8
                            vote_count: 130
                          - adult: false
                            backdrop_path: /t7nUJ8aLDkGejeLiqrGCN3OGmnD.jpg
                            genre_ids:
                              - 27
                            id: 810271
                            media_type: movie
                            original_language: en
                            original_title: The Resort
                            overview: >-
                              Four friends head to Hawaii to investigate reports
                              of a haunting at an abandoned resort in hopes of
                              finding the infamous Half-Faced Girl. When they
                              arrive, they soon learn you should be careful what
                              you wish for.
                            popularity: 20.797
                            poster_path: /bXZUVJP8Fr3RId7SSsV4RXvjnIh.jpg
                            release_date: '2021-04-30'
                            title: The Resort
                            video: false
                            vote_average: 5.6
                            vote_count: 253
                          - adult: false
                            backdrop_path: /9I6LgZ5110ycg4pyobJxGTFWFCF.jpg
                            first_air_date: '2022-12-18'
                            genre_ids:
                              - 18
                              - 37
                            id: 157744
                            media_type: tv
                            name: '1923'
                            origin_country:
                              - US
                            original_language: en
                            original_name: '1923'
                            overview: >-
                              Follow a new generation of the Dutton family
                              during the early twentieth century when pandemics,
                              historic drought, the end of Prohibition and the
                              Great Depression all plague the mountain west, and
                              the Duttons who call it home.
                            popularity: 123.801
                            poster_path: /zgZRJZvZn5cpsWAB0zMUdad3iZd.jpg
                            vote_average: 8.085
                            vote_count: 396
                        known_for_department: Acting
                        name: Michelle Randolph
                        original_name: Michelle Randolph
                        popularity: 150.846
                        profile_path: /hbe4RPaEzZCvLvyWxV6tvwcFQo4.jpg
                      - adult: false
                        gender: 2
                        id: 1763709
                        known_for:
                          - adult: false
                            backdrop_path: /cyKH7pDFlxIXluqRyNoHHEpxSDX.jpg
                            genre_ids:
                              - 80
                              - 28
                              - 53
                              - 18
                            id: 646097
                            media_type: movie
                            original_language: en
                            original_title: Rebel Ridge
                            overview: >-
                              A former Marine confronts corruption in a small
                              town when local law enforcement unjustly seizes
                              the bag of cash he needs to post his cousin's
                              bail.
                            popularity: 121.449
                            poster_path: /xEt2GSz9z5rSVpIHMiGdtf0czyf.jpg
                            release_date: '2024-08-27'
                            title: Rebel Ridge
                            video: false
                            vote_average: 7.004
                            vote_count: 1108
                          - adult: false
                            backdrop_path: /32yqxyLlWcO81UCx51Jfq9aeJdA.jpg
                            genre_ids:
                              - 53
                              - 9648
                              - 27
                            id: 631843
                            media_type: movie
                            original_language: en
                            original_title: Old
                            overview: >-
                              A group of families on a tropical holiday discover
                              that the secluded beach where they are staying is
                              somehow causing them to age rapidly – reducing
                              their entire lives into a single day.
                            popularity: 46.84
                            poster_path: /vclShucpUmPhdAOmKgf3B3Z4POD.jpg
                            release_date: '2021-07-21'
                            title: Old
                            video: false
                            vote_average: 6.333
                            vote_count: 4463
                          - adult: false
                            backdrop_path: /i9cuGvNP0XhBIHgvTfvsWeMzan4.jpg
                            first_air_date: '2017-04-25'
                            genre_ids:
                              - 18
                            id: 70128
                            media_type: tv
                            name: Genius
                            origin_country:
                              - US
                            original_language: en
                            original_name: Genius
                            overview: >-
                              The life stories of history's greatest minds. From
                              their days as young adults to their final years we
                              see their discoveries, loves, relationships,
                              causes, flaws and genius.
                            popularity: 154.542
                            poster_path: /waCykVbku2Amh0revf535SOnlmm.jpg
                            vote_average: 7.752
                            vote_count: 254
                        known_for_department: Acting
                        name: Aaron Pierre
                        original_name: Aaron Pierre
                        popularity: 150.77
                        profile_path: /hNwZWdT2KxKj1YLbipvtUhNjfAp.jpg
                      - adult: false
                        gender: 1
                        id: 1152083
                        known_for:
                          - adult: false
                            backdrop_path: /oAcV4179Kdpvb2xk9TtS8Ewrp8q.jpg
                            genre_ids:
                              - 35
                              - 10402
                            id: 612706
                            media_type: movie
                            original_language: en
                            original_title: Work It
                            overview: >-
                              A brilliant but clumsy high school senior vows to
                              get into her late father's alma mater by
                              transforming herself and a misfit squad into dance
                              champions.
                            popularity: 21.816
                            poster_path: /b5XfICAvUe8beWExBz97i0Qw4Qh.jpg
                            release_date: '2020-08-07'
                            title: Work It
                            video: false
                            vote_average: 7.548
                            vote_count: 1165
                          - adult: false
                            backdrop_path: /8wfPjfUgmGpqCIW6gS0pS0pixnA.jpg
                            genre_ids:
                              - 35
                              - 18
                              - 10749
                            id: 625450
                            media_type: movie
                            original_language: en
                            original_title: Tall Girl
                            overview: >-
                              Jodi, the tallest girl in her high school, has
                              always felt uncomfortable in her own skin. But
                              after years of slouching, being made fun of, and
                              avoiding attention at all costs, Jodi finally
                              decides to find the confidence to stand tall.
                            popularity: 27.357
                            poster_path: /m0clsFEXidLVJ0TueqWOvvImOMh.jpg
                            release_date: '2019-09-13'
                            title: Tall Girl
                            video: false
                            vote_average: 6.318
                            vote_count: 1869
                          - adult: false
                            backdrop_path: /L7DIiAdP8DnNqOh7454ZrTYspR.jpg
                            genre_ids:
                              - 10402
                              - 18
                              - 10749
                            id: 630566
                            media_type: movie
                            original_language: en
                            original_title: Clouds
                            overview: >-
                              Young musician Zach Sobiech discovers his cancer
                              has spread, leaving him just a few months to live.
                              With limited time, he follows his dream and makes
                              an album, unaware that it will soon be a viral
                              music phenomenon.
                            popularity: 21.308
                            poster_path: /d0OdD1I8qAfETvE9Rp9Voq7R8LR.jpg
                            release_date: '2020-10-09'
                            title: Clouds
                            video: false
                            vote_average: 8.3
                            vote_count: 1006
                        known_for_department: Acting
                        name: Sabrina Carpenter
                        original_name: Sabrina Carpenter
                        popularity: 148.751
                        profile_path: /o0anvGEg34MzoNh6hbJHthB3paF.jpg
                      - adult: false
                        gender: 1
                        id: 224513
                        known_for:
                          - adult: false
                            backdrop_path: /3bWUP9kyf9BxVc0hmZdqXB2w4UP.jpg
                            genre_ids:
                              - 878
                              - 18
                            id: 335984
                            media_type: movie
                            original_language: en
                            original_title: Blade Runner 2049
                            overview: >-
                              Thirty years after the events of the first film, a
                              new blade runner, LAPD Officer K, unearths a
                              long-buried secret that has the potential to
                              plunge what's left of society into chaos. K's
                              discovery leads him on a quest to find Rick
                              Deckard, a former LAPD blade runner who has been
                              missing for 30 years.
                            popularity: 100.447
                            poster_path: /gajva2L0rPYkEWjzgFlBXCAVBE5.jpg
                            release_date: '2017-10-04'
                            title: Blade Runner 2049
                            video: false
                            vote_average: 7.6
                            vote_count: 13741
                          - adult: false
                            backdrop_path: /4HWAQu28e2yaWrtupFPGFkdNU7V.jpg
                            genre_ids:
                              - 35
                              - 80
                              - 9648
                            id: 546554
                            media_type: movie
                            original_language: en
                            original_title: Knives Out
                            overview: >-
                              When renowned crime novelist Harlan Thrombey is
                              found dead at his estate just after his 85th
                              birthday, the inquisitive and debonair Detective
                              Benoit Blanc is mysteriously enlisted to
                              investigate. From Harlan's dysfunctional family to
                              his devoted staff, Blanc sifts through a web of
                              red herrings and self-serving lies to uncover the
                              truth behind Harlan's untimely death.
                            popularity: 141.287
                            poster_path: /pThyQovXQrw2m0s9x82twj48Jq4.jpg
                            release_date: '2019-11-27'
                            title: Knives Out
                            video: false
                            vote_average: 7.8
                            vote_count: 12484
                          - adult: false
                            backdrop_path: /oNoprEND25zXR6Fns8cIZUkuoMc.jpg
                            genre_ids:
                              - 35
                              - 80
                              - 18
                            id: 308266
                            media_type: movie
                            original_language: en
                            original_title: War Dogs
                            overview: >-
                              Based on the true story of two young men, David
                              Packouz and Efraim Diveroli, who won a $300
                              million contract from the Pentagon to arm
                              America's allies in Afghanistan.
                            popularity: 41.177
                            poster_path: /mDcPRjZC1bb6LavFU3gwsWdVfCM.jpg
                            release_date: '2016-08-18'
                            title: War Dogs
                            video: false
                            vote_average: 6.922
                            vote_count: 4931
                        known_for_department: Acting
                        name: Ana de Armas
                        original_name: Ana de Armas
                        popularity: 144.268
                        profile_path: /5Qne374OM0ewMM7uSN9eq9jNrWq.jpg
                      - adult: false
                        gender: 2
                        id: 976
                        known_for:
                          - adult: false
                            backdrop_path: /ibKeXahq4JD63z6uWQphqoJLvNw.jpg
                            genre_ids:
                              - 28
                              - 878
                              - 27
                            id: 345940
                            media_type: movie
                            original_language: en
                            original_title: The Meg
                            overview: >-
                              A deep sea submersible pilot revisits his past
                              fears in the Mariana Trench, and accidentally
                              unleashes the seventy foot ancestor of the Great
                              White Shark believed to be extinct.
                            popularity: 78.63
                            poster_path: /eyWICPcxOuTcDDDbTMOZawoOn8d.jpg
                            release_date: '2018-08-09'
                            title: The Meg
                            video: false
                            vote_average: 6.253
                            vote_count: 7670
                          - adult: false
                            backdrop_path: /70AV2Xx5FQYj20labp0EGdbjI6E.jpg
                            genre_ids:
                              - 80
                              - 28
                              - 53
                            id: 637649
                            media_type: movie
                            original_language: en
                            original_title: Wrath of Man
                            overview: >-
                              A cold and mysterious new security guard for a Los
                              Angeles cash truck company surprises his
                              co-workers when he unleashes precision skills
                              during a heist. The crew is left wondering who he
                              is and where he came from. Soon, the marksman's
                              ultimate motive becomes clear as he takes dramatic
                              and irrevocable steps to settle a score.
                            popularity: 151.765
                            poster_path: /M7SUK85sKjaStg4TKhlAVyGlz3.jpg
                            release_date: '2021-04-22'
                            title: Wrath of Man
                            video: false
                            vote_average: 7.632
                            vote_count: 5359
                          - adult: false
                            backdrop_path: /kWt1OcPgwO1ssu57wgTKmq38JYw.jpg
                            genre_ids:
                              - 28
                              - 80
                              - 53
                            id: 4108
                            media_type: movie
                            original_language: en
                            original_title: The Transporter
                            overview: >-
                              Former Special Forces officer Frank Martin will
                              deliver anything to anyone for the right price,
                              and his no-questions-asked policy puts him in high
                              demand. But when he realizes his latest cargo is
                              alive, it sets in motion a dangerous chain of
                              events. The bound and gagged Lai is being smuggled
                              to France by a shady American businessman, and
                              Frank works to save her as his own illegal
                              activities are uncovered by a French detective.
                            popularity: 53.745
                            poster_path: /xmuCaJJjGbUns8pwMD7M0C0O1uP.jpg
                            release_date: '2002-10-02'
                            title: The Transporter
                            video: false
                            vote_average: 6.712
                            vote_count: 5344
                        known_for_department: Acting
                        name: Jason Statham
                        original_name: Jason Statham
                        popularity: 143.499
                        profile_path: /tI3QoB2KlvXoXM0rH3SVhmcUuxv.jpg
                      - adult: false
                        gender: 1
                        id: 1392137
                        known_for:
                          - adult: false
                            backdrop_path: /xwgBHC2FgoIrQitl8jZwXXdsR9u.jpg
                            genre_ids:
                              - 35
                              - 18
                              - 53
                            id: 466272
                            media_type: movie
                            original_language: en
                            original_title: Once Upon a Time... in Hollywood
                            overview: >-
                              Los Angeles, 1969. TV star Rick Dalton, a
                              struggling actor specializing in westerns, and
                              stuntman Cliff Booth, his best friend, try to
                              survive in a constantly changing movie industry.
                              Dalton is the neighbor of the young and promising
                              actress and model Sharon Tate, who has just
                              married the prestigious Polish director Roman
                              Polanski…
                            popularity: 96.957
                            poster_path: /wQKeS2JrsRF8XSfd9zqflrc5gad.jpg
                            release_date: '2019-07-24'
                            title: Once Upon a Time... in Hollywood
                            video: false
                            vote_average: 7.438
                            vote_count: 13526
                          - adult: false
                            backdrop_path: /oLp6ueqQXNWvWCFwrb6tXDnH0Ye.jpg
                            genre_ids:
                              - 35
                              - 80
                              - 28
                            id: 290250
                            media_type: movie
                            original_language: en
                            original_title: The Nice Guys
                            overview: >-
                              A private eye investigates the apparent suicide of
                              a fading porn star in 1970s Los Angeles and
                              uncovers a conspiracy.
                            popularity: 33.661
                            poster_path: /clq4So9spa9cXk3MZy2iMdqkxP2.jpg
                            release_date: '2016-05-15'
                            title: The Nice Guys
                            video: false
                            vote_average: 7.1
                            vote_count: 7931
                          - adult: false
                            backdrop_path: /b0itXhS69X33BvLi7uWjUZQs9MB.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: 983.442
                            poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                            release_date: '2024-09-07'
                            title: The Substance
                            video: false
                            vote_average: 7.1
                            vote_count: 3102
                        known_for_department: Acting
                        name: Margaret Qualley
                        original_name: Margaret Qualley
                        popularity: 133.926
                        profile_path: /jStNyMj3acpLuH48awLVLqqlyaV.jpg
                  total_pages:
                    type: number
                    example: 190387
                  total_results:
                    type: number
                    example: 3807729
              examples:
                Popular:
                  value:
                    page: 1
                    results:
                      - adult: false
                        gender: 2
                        id: 63429
                        known_for:
                          - adult: false
                            backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                            genre_ids:
                              - 18
                              - 35
                              - 10749
                            id: 11178
                            media_type: movie
                            original_language: ko
                            original_title: 엽기적인 그녀
                            overview: >-
                              A dweeby, mild-mannered man comes to the aid of a
                              drunk young woman on a subway platform. Little
                              does he know how much trouble he’s in for.
                            popularity: 15.542
                            poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                            release_date: '2001-07-27'
                            title: My Sassy Girl
                            video: false
                            vote_average: 7.5
                            vote_count: 569
                          - adult: false
                            backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                            genre_ids:
                              - 18
                              - 10749
                            id: 42190
                            media_type: movie
                            original_language: ko
                            original_title: 클래식
                            overview: >-
                              Ji-hae's friend is having problems expressing her
                              feelings to the boy she loves, so she asks Ji-hae
                              to write e-mails to him in her name. As the boy
                              falls in love with her letters, Ji-hae discovers
                              the story of her mother's romance which is
                              remarkably similar to her own circumstances.
                            popularity: 14.276
                            poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                            release_date: '2003-01-30'
                            title: The Classic
                            video: false
                            vote_average: 7.6
                            vote_count: 158
                          - adult: false
                            backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                            genre_ids:
                              - 35
                              - 10749
                            id: 821661
                            media_type: movie
                            original_language: ko
                            original_title: 해피 뉴 이어
                            overview: >-
                              A romantic comedy of a young man and woman that is
                              told in the background of hotel 'Emross'. It has
                              stories of people who met each other at Hotel
                              Emross during the New Year holidays. Each one has
                              his own memory to relate and create relationships
                              or just going nostalgic.
                            popularity: 11.076
                            poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                            release_date: '2021-12-29'
                            title: A Year-End Medley
                            video: false
                            vote_average: 7.1
                            vote_count: 142
                        known_for_department: Directing
                        name: Kwak Jae-yong
                        original_name: 곽재용
                        popularity: 458.071
                        profile_path: /oTpZ0Ek4qoI8U0tRIViUhgfB05b.jpg
                      - adult: false
                        gender: 1
                        id: 2527414
                        known_for:
                          - adult: false
                            backdrop_path: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                            genre_ids:
                              - 10749
                              - 18
                            id: 1010581
                            media_type: movie
                            original_language: es
                            original_title: Culpa mía
                            overview: >-
                              Noah must leave her city, boyfriend, and friends
                              to move into William Leister's mansion, the flashy
                              and wealthy husband of her mother Rafaela. As a
                              proud and independent 17 year old, Noah resists
                              living in a mansion surrounded by luxury. However,
                              it is there where she meets Nick, her new
                              stepbrother, and the clash of their strong
                              personalities becomes evident from the very
                              beginning.
                            popularity: 934.231
                            poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                            release_date: '2023-06-08'
                            title: My Fault
                            video: false
                            vote_average: 7.893
                            vote_count: 3341
                          - 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: 2623.666
                            poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                            release_date: '2024-12-26'
                            title: Your Fault
                            video: false
                            vote_average: 7.12
                            vote_count: 754
                          - adult: false
                            backdrop_path: /ieiq46OoeTrLkjtclmhii6iRyzP.jpg
                            first_air_date: '2024-05-31'
                            genre_ids:
                              - 18
                            id: 242876
                            media_type: tv
                            name: Raising Voices
                            origin_country:
                              - ES
                            original_language: es
                            original_name: Ni una más
                            overview: >-
                              When a 17-year-old reports a sexual assault at her
                              high school, an investigation upends her life and
                              tests her relationships.
                            popularity: 246.773
                            poster_path: /lCU77Jp0iWN2e1WuSJvR7M35ebN.jpg
                            vote_average: 7.795
                            vote_count: 351
                        known_for_department: Acting
                        name: Nicole Wallace
                        original_name: Nicole Wallace
                        popularity: 244.446
                        profile_path: /xlvq6OYCN6yQef4fpJQtwVyQxqr.jpg
                      - adult: false
                        gender: 1
                        id: 20652
                        known_for:
                          - adult: false
                            backdrop_path: /AwlJ2bQGjfEuXLsL5XJAaxOmMuV.jpg
                            genre_ids:
                              - 14
                              - 18
                              - 28
                              - 53
                              - 10749
                            id: 2008
                            media_type: movie
                            original_language: zh
                            original_title: 无极
                            overview: >-
                              An orphaned girl, driven by poverty at such a
                              young age, makes a promise with an enchantress. In
                              return for beauty and the admiration of every man,
                              she will never be with the man she loves. This
                              spell cannot be broken unless the impossible
                              happens: snow falling in spring and the dead
                              coming back to life. Now a grown and beautiful
                              princess, she regrets her promise, for all of the
                              men she's loved has always been met with tragedy.
                            popularity: 16.398
                            poster_path: /tdm4mlc27S1d72ub4Y4xcU2OlDD.jpg
                            release_date: '2005-12-15'
                            title: The Promise
                            video: false
                            vote_average: 5.6
                            vote_count: 115
                          - adult: false
                            backdrop_path: /lMRX4cLx4hxYth3iQ96c0E1RHGB.jpg
                            genre_ids:
                              - 28
                              - 35
                            id: 11770
                            media_type: movie
                            original_language: cn
                            original_title: 少林足球
                            overview: >-
                              A young Shaolin follower reunites with his
                              discouraged brothers to form a soccer team using
                              their martial art skills to their advantage.
                            popularity: 48.648
                            poster_path: /ppgeawDWa4rehYYRidWCqg4kOli.jpg
                            release_date: '2001-07-05'
                            title: Shaolin Soccer
                            video: false
                            vote_average: 7.1
                            vote_count: 2262
                          - adult: false
                            backdrop_path: /fGzO3qGIaBlLlW53fsaRSUPEjw0.jpg
                            genre_ids:
                              - 35
                              - 18
                              - 10749
                            id: 53168
                            media_type: movie
                            original_language: cn
                            original_title: 喜劇之王
                            overview: >-
                              Wan Tin-Sau is an actor who cannot seem to catch a
                              break, since his only professional jobs are
                              limited to being a movie extra. As well as being
                              an actor, he is also the head of his village's
                              community center.
                            popularity: 10.336
                            poster_path: /dmJWvKNgeCrIwJH6AapdSMiZHop.jpg
                            release_date: '1999-02-08'
                            title: King of Comedy
                            video: false
                            vote_average: 7.3
                            vote_count: 174
                        known_for_department: Acting
                        name: Cecilia Cheung
                        original_name: 張柏芝
                        popularity: 234.574
                        profile_path: /xghVxRPUmFCHYxzD0NxMO8NtoKK.jpg
                      - adult: false
                        gender: 2
                        id: 2786960
                        known_for:
                          - adult: false
                            backdrop_path: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                            genre_ids:
                              - 10749
                              - 18
                            id: 1010581
                            media_type: movie
                            original_language: es
                            original_title: Culpa mía
                            overview: >-
                              Noah must leave her city, boyfriend, and friends
                              to move into William Leister's mansion, the flashy
                              and wealthy husband of her mother Rafaela. As a
                              proud and independent 17 year old, Noah resists
                              living in a mansion surrounded by luxury. However,
                              it is there where she meets Nick, her new
                              stepbrother, and the clash of their strong
                              personalities becomes evident from the very
                              beginning.
                            popularity: 934.231
                            poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                            release_date: '2023-06-08'
                            title: My Fault
                            video: false
                            vote_average: 7.893
                            vote_count: 3341
                          - adult: false
                            backdrop_path: /ieiq46OoeTrLkjtclmhii6iRyzP.jpg
                            first_air_date: '2024-05-31'
                            genre_ids:
                              - 18
                            id: 242876
                            media_type: tv
                            name: Raising Voices
                            origin_country:
                              - ES
                            original_language: es
                            original_name: Ni una más
                            overview: >-
                              When a 17-year-old reports a sexual assault at her
                              high school, an investigation upends her life and
                              tests her relationships.
                            popularity: 246.773
                            poster_path: /lCU77Jp0iWN2e1WuSJvR7M35ebN.jpg
                            vote_average: 7.795
                            vote_count: 351
                          - adult: false
                            backdrop_path: /kxxJBjQAwhQXTtJTRe0qursHuDH.jpg
                            first_air_date: '2024-06-12'
                            genre_ids:
                              - 18
                              - 9648
                            id: 249670
                            media_type: tv
                            name: From Tomorrow
                            origin_country:
                              - ES
                            original_language: es
                            original_name: Desde el mañana
                            overview: >-
                              Gabriela and Andrés, a doctor and a detective,
                              must face a series of supernatural phenomena that
                              disrupt their lives and those of their loved ones.
                              Together, they have the opportunity to change
                              their destinies.
                            popularity: 42.425
                            poster_path: /tsaOWbVklGlGhMxRcRqPEi5QZIW.jpg
                            vote_average: 7.2
                            vote_count: 63
                        known_for_department: Acting
                        name: Gabriel Guevara
                        original_name: Gabriel Guevara
                        popularity: 215.867
                        profile_path: /pviRYKEEmoPUfLYwP1VHJ6LQcRg.jpg
                      - adult: false
                        gender: 1
                        id: 550627
                        known_for:
                          - adult: false
                            backdrop_path: /scMU7yDvzZdqpqb24WcuQB0i4fb.jpg
                            genre_ids:
                              - 28
                              - 53
                              - 80
                              - 35
                            id: 36282
                            media_type: movie
                            original_language: ja
                            original_title: 極道戦国志 不動
                            overview: >-
                              In order to settle a business dispute, a mob
                              leader murders one of his own teenage sons. The
                              surviving son vows to avenge his brother's death,
                              and organizes his own gang of teenage killers to
                              destroy his father's organization.
                            popularity: 7.135
                            poster_path: /kRlmTuDdZEGPbbXavNmiafUYYka.jpg
                            release_date: '1996-10-12'
                            title: 'Fudoh: The New Generation'
                            video: false
                            vote_average: 6.6
                            vote_count: 64
                          - adult: false
                            backdrop_path: /1XUjqfCCgoqGiJYV6hfPlHOxC59.jpg
                            genre_ids:
                              - 28
                              - 18
                              - 53
                            id: 36274
                            media_type: movie
                            original_language: ja
                            original_title: 実録・安藤昇侠道（アウトロー）伝 烈火
                            overview: >-
                              After Kunisada's Yakuza leader and father figure
                              is brutally murdered, he and his best friend go on
                              a two-man mission to avenge his death, killing
                              other Yakuza leaders leading to a final
                              confrontation by the old man's killers.
                            popularity: 3.493
                            poster_path: /2r4WNCpwAQzekbaZwoCcOv1GJuO.jpg
                            release_date: '2002-09-21'
                            title: 'Deadly Outlaw: Rekka'
                            video: false
                            vote_average: 6.7
                            vote_count: 28
                          - adult: false
                            backdrop_path: null
                            genre_ids:
                              - 18
                            id: 792589
                            media_type: movie
                            original_language: cn
                            original_title: 女歡
                            overview: Female modeling and lesbian interest
                            popularity: 5.097
                            poster_path: /6owpqEOBcnDJ6r6GEoV4xZcdolo.jpg
                            release_date: '1998-01-01'
                            title: Intimate Desire
                            video: false
                            vote_average: 1.5
                            vote_count: 2
                        known_for_department: Acting
                        name: Miho Nomoto
                        original_name: 野本美穂
                        popularity: 206.638
                        profile_path: /ego6I5PWMZRJGYyu8aPjiNwsz3l.jpg
                      - adult: false
                        gender: 2
                        id: 3724154
                        known_for:
                          - adult: false
                            backdrop_path: /9ExqMvtOqvYcmQjMDXyhtfjLmEA.jpg
                            genre_ids:
                              - 18
                              - 10749
                            id: 1232449
                            media_type: movie
                            original_language: nl
                            original_title: Young Hearts
                            overview: >-
                              Fourteen-year-old Elias increasingly feels like an
                              outsider in his village. When he meets his new
                              neighbour of the same age, Alexander, Elias is
                              confronted with his burgeoning sexuality.
                            popularity: 142.2
                            poster_path: /iGCtYxfuvXfy0BD5m6p7vKuPOxS.jpg
                            release_date: '2024-10-26'
                            title: Young Hearts
                            video: false
                            vote_average: 8.3
                            vote_count: 27
                          - adult: false
                            backdrop_path: /xbb0AzHP1B7vJ2LiN7ARLNe3RwZ.jpg
                            first_air_date: '2023-08-18'
                            genre_ids:
                              - 35
                            id: 229685
                            media_type: tv
                            name: Boomer
                            origin_country:
                              - BE
                            original_language: nl
                            original_name: Boomer
                            overview: ''
                            popularity: 13.389
                            poster_path: /bZAKLGZk3gqCbdBhcfrnBp0LuwS.jpg
                            vote_average: 10
                            vote_count: 1
                          - adult: false
                            backdrop_path: /xANGcChEgQJLHMdiLwOLxWebvbs.jpg
                            genre_ids:
                              - 18
                            id: 1030955
                            media_type: movie
                            original_language: nl
                            original_title: Alleen Ik
                            overview: >-
                              Longing for acceptance, a neurodivergent boy
                              taunts the boundaries of his best friend: his
                              brother.
                            popularity: 17.411
                            poster_path: /qUzwUif6WybmpH6t4MA26hkdUI5.jpg
                            release_date: '2022-11-05'
                            title: Alleen Ik (Only me, me alone)
                            video: false
                            vote_average: 6
                            vote_count: 2
                        known_for_department: Acting
                        name: Lou Goossens
                        original_name: Lou Goossens
                        popularity: 189.608
                        profile_path: /kY8eifhCPvjTE6JJclrrWO7Zr9L.jpg
                      - adult: false
                        gender: 2
                        id: 1190668
                        known_for:
                          - adult: false
                            backdrop_path: /h3HsfV8Kn9Sz2QWUYYdP5ya23hx.jpg
                            genre_ids:
                              - 878
                              - 12
                            id: 438631
                            media_type: movie
                            original_language: en
                            original_title: Dune
                            overview: >-
                              Paul Atreides, a brilliant and gifted young man
                              born into a great destiny beyond his
                              understanding, must travel to the most dangerous
                              planet in the universe to ensure the future of his
                              family and his people. As malevolent forces
                              explode into conflict over the planet's exclusive
                              supply of the most precious resource in
                              existence-a commodity capable of unlocking
                              humanity's greatest potential-only those who can
                              conquer their fear will survive.
                            popularity: 158.163
                            poster_path: /d5NXSklXo0qyIYkgV94XAgMIckC.jpg
                            release_date: '2021-09-15'
                            title: Dune
                            video: false
                            vote_average: 7.786
                            vote_count: 12958
                          - adult: false
                            backdrop_path: /zvOJawrnmgK0sL293mOXOdLvTXQ.jpg
                            genre_ids:
                              - 10749
                              - 18
                            id: 398818
                            media_type: movie
                            original_language: en
                            original_title: Call Me by Your Name
                            overview: >-
                              In 1980s Italy, a relationship begins between
                              seventeen-year-old teenage Elio and the older
                              adult man hired as his father's research
                              assistant.
                            popularity: 65.784
                            poster_path: /mZ4gBdfkhP9tvLH1DO4m4HYtiyi.jpg
                            release_date: '2017-07-28'
                            title: Call Me by Your Name
                            video: false
                            vote_average: 8.1
                            vote_count: 12117
                          - adult: false
                            backdrop_path: /rRBD8ORo9y34tYkAQJVbn4Ml6tu.jpg
                            genre_ids:
                              - 878
                              - 12
                            id: 693134
                            media_type: movie
                            original_language: en
                            original_title: 'Dune: Part Two'
                            overview: >-
                              Follow the mythic journey of Paul Atreides as he
                              unites with Chani and the Fremen while on a path
                              of revenge against the conspirators who destroyed
                              his family. Facing a choice between the love of
                              his life and the fate of the known universe, Paul
                              endeavors to prevent a terrible future only he can
                              foresee.
                            popularity: 214.432
                            poster_path: /6izwz7rsy95ARzTR3poZ8H6c5pp.jpg
                            release_date: '2024-02-27'
                            title: 'Dune: Part Two'
                            video: false
                            vote_average: 8.2
                            vote_count: 5969
                        known_for_department: Acting
                        name: Timothée Chalamet
                        original_name: Timothée Chalamet
                        popularity: 178.008
                        profile_path: /BE2sdjpgsa2rNTFa66f7upkaOP.jpg
                      - adult: false
                        gender: 2
                        id: 6384
                        known_for:
                          - adult: false
                            backdrop_path: /icmmSD4vTTDKOq2vvdulafOGw93.jpg
                            genre_ids:
                              - 28
                              - 878
                            id: 603
                            media_type: movie
                            original_language: en
                            original_title: The Matrix
                            overview: >-
                              Set in the 22nd century, The Matrix tells the
                              story of a computer hacker who joins a group of
                              underground insurgents fighting the vast and
                              powerful computers who now rule the earth.
                            popularity: 146.223
                            poster_path: /dXNAPwY7VrqMAo51EKhhCJfaGb5.jpg
                            release_date: '1999-03-31'
                            title: The Matrix
                            video: false
                            vote_average: 8.2
                            vote_count: 25858
                          - adult: false
                            backdrop_path: /eD7FnB7LLrBV5ewjdGLYTAoV9Mv.jpg
                            genre_ids:
                              - 28
                              - 53
                            id: 245891
                            media_type: movie
                            original_language: en
                            original_title: John Wick
                            overview: >-
                              Ex-hitman John Wick comes out of retirement to
                              track down the gangsters that took everything from
                              him.
                            popularity: 77.521
                            poster_path: /fZPSd91yGE9fCcCe6OoQr6E3Bev.jpg
                            release_date: '2014-10-22'
                            title: John Wick
                            video: false
                            vote_average: 7.441
                            vote_count: 19312
                          - adult: false
                            backdrop_path: /r17jFHAemzcWPPtoO0UxjIX0xas.jpg
                            genre_ids:
                              - 28
                              - 53
                              - 80
                            id: 324552
                            media_type: movie
                            original_language: en
                            original_title: 'John Wick: Chapter 2'
                            overview: >-
                              John Wick is forced out of retirement by a former
                              associate looking to seize control of a shadowy
                              international assassins’ guild. Bound by a blood
                              oath to aid him, Wick travels to Rome and does
                              battle against some of the world’s most dangerous
                              killers.
                            popularity: 93.851
                            poster_path: /hXWBc0ioZP3cN4zCu6SN3YHXZVO.jpg
                            release_date: '2017-02-08'
                            title: 'John Wick: Chapter 2'
                            video: false
                            vote_average: 7.3
                            vote_count: 13117
                        known_for_department: Acting
                        name: Keanu Reeves
                        original_name: Keanu Reeves
                        popularity: 169.411
                        profile_path: /8RZLOyYGsoRe9p44q3xin9QkMHv.jpg
                      - adult: false
                        gender: 2
                        id: 80981
                        known_for:
                          - adult: false
                            backdrop_path: /alo20exRRwPj1vhqrjbmaee9op9.jpg
                            genre_ids:
                              - 18
                              - 28
                              - 53
                            id: 235704
                            media_type: movie
                            original_language: ko
                            original_title: 동창생
                            overview: >-
                              The son of a North Korean spy decides to follow in
                              his father's footsteps to protect his little
                              sister. After his father's botched espionage
                              mission, North Korean Myung-hoon and his young
                              sister Hye-in are sent to a labor prison camp. In
                              order to save his sister's life, Myung-hoon
                              volunteers to become a spy and infiltrates the
                              South as a teenage defector. While attending high
                              school in the South, he meets another girl named
                              Hye-in, and rescues her when she comes under
                              attack.
                            popularity: 17.66
                            poster_path: /ybM400b3vesnoNzOlTlAmHeEYPq.jpg
                            release_date: '2013-11-05'
                            title: Commitment
                            video: false
                            vote_average: 7.221
                            vote_count: 122
                          - adult: false
                            backdrop_path: /pPcgtojMTIMkRT9I6wacHBxpnyW.jpg
                            genre_ids:
                              - 10752
                            id: 51200
                            media_type: movie
                            original_language: ko
                            original_title: 포화 속으로
                            overview: >-
                              In August 1950, waiting for UN troops to arrive,
                              the South Korean army assembled to protect Nakdong
                              River. Only 71 student-soldiers are left behind to
                              guard the city of Pohang. Now they are on a
                              mission to defend the country from North Korean
                              troops.
                            popularity: 16.436
                            poster_path: /3p8nZAGiw8LT8TFpYOn7uoTUdvI.jpg
                            release_date: '2010-06-16'
                            title: '71: Into the Fire'
                            video: false
                            vote_average: 7.5
                            vote_count: 188
                          - adult: false
                            backdrop_path: /tW8H0Bn1vptVAS2SZASmkkl2K5P.jpg
                            genre_ids:
                              - 80
                              - 18
                            id: 290865
                            media_type: movie
                            original_language: ko
                            original_title: '타짜: 신의 손'
                            overview: >-
                              Dae-gil has been skilled with his hands and has
                              shown a strong desire for winning ever since he
                              was a child. He will succeed his uncle and jump
                              into the world of Tazza, risking his life in
                              competition.
                            popularity: 25.813
                            poster_path: /lWiOBlD8NSuOJRQAZHOzPRFrwa5.jpg
                            release_date: '2014-09-03'
                            title: 'Tazza: The Hidden Card'
                            video: false
                            vote_average: 7
                            vote_count: 85
                        known_for_department: Acting
                        name: Choi Seung-hyun
                        original_name: 최승현
                        popularity: 166.725
                        profile_path: /TVMPz9YPf4eVtd2up9kZnUMzQn.jpg
                      - adult: false
                        gender: 1
                        id: 115440
                        known_for:
                          - adult: false
                            backdrop_path: /9KnIzPCv9XpWA0MqmwiKBZvV1Sj.jpg
                            first_air_date: '2019-06-16'
                            genre_ids:
                              - 18
                            id: 85552
                            media_type: tv
                            name: Euphoria
                            origin_country:
                              - US
                            original_language: en
                            original_name: Euphoria
                            overview: >-
                              A group of high school students navigate love and
                              friendships in a world of drugs, sex, trauma, and
                              social media.
                            popularity: 335.053
                            poster_path: /3Q0hd3heuWwDWpwcDkhQOA6TYWI.jpg
                            vote_average: 8.31
                            vote_count: 9830
                          - adult: false
                            backdrop_path: /j9eOeLlTGoHoM8BNUJVNyWmIvCi.jpg
                            genre_ids:
                              - 10749
                              - 35
                            id: 1072790
                            media_type: movie
                            original_language: en
                            original_title: Anyone But You
                            overview: >-
                              After an amazing first date, Bea and Ben’s fiery
                              attraction turns ice cold — until they find
                              themselves unexpectedly reunited at a destination
                              wedding in Australia. So they do what any two
                              mature adults would do: pretend to be a couple.
                            popularity: 90.924
                            poster_path: /5qHoazZiaLe7oFBok7XlUhg96f2.jpg
                            release_date: '2023-12-21'
                            title: Anyone But You
                            video: false
                            vote_average: 6.923
                            vote_count: 2325
                          - adult: false
                            backdrop_path: /5Eip60UDiPLASyKjmHPMruggTc4.jpg
                            genre_ids:
                              - 27
                              - 9648
                              - 53
                            id: 1041613
                            media_type: movie
                            original_language: en
                            original_title: Immaculate
                            overview: >-
                              An American nun embarks on a new journey when she
                              joins a remote convent in the Italian countryside.
                              However, her warm welcome quickly turns into a
                              living nightmare when she discovers her new home
                              harbours a sinister secret and unspeakable
                              horrors.
                            popularity: 83.347
                            poster_path: /fdZpvODTX5wwkD0ikZNaClE4AoW.jpg
                            release_date: '2024-03-20'
                            title: Immaculate
                            video: false
                            vote_average: 6.3
                            vote_count: 1293
                        known_for_department: Acting
                        name: Sydney Sweeney
                        original_name: Sydney Sweeney
                        popularity: 165.294
                        profile_path: /qYiaSl0Eb7G3VaxOg8PxExCFwon.jpg
                      - adult: false
                        gender: 2
                        id: 1862434
                        known_for:
                          - adult: false
                            backdrop_path: /aWas3hZ8DKvfKxLe3dQVpB758eA.jpg
                            genre_ids:
                              - 10749
                              - 35
                            id: 502292
                            media_type: movie
                            original_language: en
                            original_title: The Last Summer
                            overview: >-
                              Standing on the precipice of adulthood, a group of
                              friends navigate new relationships, while
                              reexamining others, during their final summer
                              before college.
                            popularity: 15.693
                            poster_path: /nAn3MRAUwbjVApN3qYkvsTEOAvx.jpg
                            release_date: '2019-05-03'
                            title: The Last Summer
                            video: false
                            vote_average: 6.011
                            vote_count: 1368
                          - adult: false
                            backdrop_path: /lMjY6kMBOHhloz2Ul16fLJn8xuw.jpg
                            genre_ids:
                              - 18
                              - 10752
                            id: 591538
                            media_type: movie
                            original_language: en
                            original_title: The Tragedy of Macbeth
                            overview: >-
                              Macbeth, the Thane of Glamis, receives a prophecy
                              from a trio of witches that one day he will become
                              King of Scotland. Consumed by ambition and spurred
                              to action by his wife, Macbeth murders his king
                              and takes the throne for himself.
                            popularity: 15.254
                            poster_path: /tDNJEhcLbX3jIk3BMCur9pCdaVD.jpg
                            release_date: '2021-12-05'
                            title: The Tragedy of Macbeth
                            video: false
                            vote_average: 6.9
                            vote_count: 755
                          - adult: false
                            backdrop_path: /hGdTq9BX3DB2gwGGFMLTdipCBPk.jpg
                            first_air_date: '2022-10-30'
                            genre_ids:
                              - 18
                              - 10768
                            id: 93870
                            media_type: tv
                            name: SAS Rogue Heroes
                            origin_country:
                              - GB
                            original_language: en
                            original_name: SAS Rogue Heroes
                            overview: >-
                              The dramatised account of how the world’s greatest
                              Special Forces unit, the SAS, was formed under
                              extraordinary circumstances in the darkest days of
                              World War Two.
                            popularity: 86.86
                            poster_path: /qEaxiDrPaTY34eIg6naXMfM2IKC.jpg
                            vote_average: 7.7
                            vote_count: 92
                        known_for_department: Acting
                        name: Jacob McCarthy
                        original_name: Jacob McCarthy
                        popularity: 158.943
                        profile_path: /kU6N4Z2L7f3mFeSZnrnmFE0k4ZZ.jpg
                      - adult: false
                        gender: 2
                        id: 500
                        known_for:
                          - adult: false
                            backdrop_path: /4V1yIoAKPMRQwGBaSses8Bp2nsi.jpg
                            genre_ids:
                              - 28
                              - 878
                            id: 137113
                            media_type: movie
                            original_language: en
                            original_title: Edge of Tomorrow
                            overview: >-
                              Major Bill Cage is an officer who has never seen a
                              day of combat when he is unceremoniously demoted
                              and dropped into combat. Cage is killed within
                              minutes, managing to take an alpha alien down with
                              him. He awakens back at the beginning of the same
                              day and is forced to fight and die again... and
                              again - as physical contact with the alien has
                              thrown him into a time loop.
                            popularity: 73.243
                            poster_path: /uUHvlkLavotfGsNtosDy8ShsIYF.jpg
                            release_date: '2014-05-27'
                            title: Edge of Tomorrow
                            video: false
                            vote_average: 7.627
                            vote_count: 13896
                          - adult: false
                            backdrop_path: /sbkYWB5QcfT00gLUkbNE5LTdhIX.jpg
                            genre_ids:
                              - 28
                              - 878
                              - 12
                              - 9648
                            id: 75612
                            media_type: movie
                            original_language: en
                            original_title: Oblivion
                            overview: >-
                              Jack Harper is one of the last few drone repairmen
                              stationed on Earth. Part of a massive operation to
                              extract vital resources after decades of war with
                              a terrifying threat known as the Scavs, Jack’s
                              mission is nearly complete. His existence is
                              brought crashing down when he rescues a beautiful 
                              stranger from a downed spacecraft. Her arrival
                              triggers a chain of events that  forces him to
                              question everything he knows and puts the fate of
                              humanity in his hands.
                            popularity: 60.779
                            poster_path: /5Onf4TW3mZn3oLeKVr9W4FGomQQ.jpg
                            release_date: '2013-04-10'
                            title: Oblivion
                            video: false
                            vote_average: 6.7
                            vote_count: 10693
                          - adult: false
                            backdrop_path: /ih4lZkUpmSE7AP3maymiO72xJ1z.jpg
                            genre_ids:
                              - 28
                              - 53
                              - 12
                            id: 56292
                            media_type: movie
                            original_language: en
                            original_title: 'Mission: Impossible - Ghost Protocol'
                            overview: >-
                              Ethan Hunt and his team are racing against time to
                              track down a dangerous terrorist named Hendricks,
                              who has gained access to Russian nuclear launch
                              codes and is planning a strike on the United
                              States. An attempt to stop him ends in an
                              explosion causing severe destruction to the
                              Kremlin and the IMF to be implicated in the
                              bombing, forcing the President to disavow them. No
                              longer being aided by the government, Ethan and
                              his team chase Hendricks around the globe,
                              although they might still be too late to stop a
                              disaster.
                            popularity: 57.219
                            poster_path: /eRZTGx7GsiKqPch96k27LK005ZL.jpg
                            release_date: '2011-12-07'
                            title: 'Mission: Impossible - Ghost Protocol'
                            video: false
                            vote_average: 7.092
                            vote_count: 9907
                        known_for_department: Acting
                        name: Tom Cruise
                        original_name: Tom Cruise
                        popularity: 154.514
                        profile_path: /eOh4ubpOm2Igdg0QH2ghj0mFtC.jpg
                      - adult: false
                        gender: 2
                        id: 64
                        known_for:
                          - adult: false
                            backdrop_path: /y2DB71C4nyIdMrANijz8mzvQtk6.jpg
                            genre_ids:
                              - 28
                              - 80
                              - 18
                              - 53
                            id: 49026
                            media_type: movie
                            original_language: en
                            original_title: The Dark Knight Rises
                            overview: >-
                              Following the death of District Attorney Harvey
                              Dent, Batman assumes responsibility for Dent's
                              crimes to protect the late attorney's reputation
                              and is subsequently hunted by the Gotham City
                              Police Department. Eight years later, Batman
                              encounters the mysterious Selina Kyle and the
                              villainous Bane, a new terrorist leader who
                              overwhelms Gotham's finest. The Dark Knight
                              resurfaces to protect a city that has branded him
                              an enemy.
                            popularity: 70.487
                            poster_path: /hr0L2aueqlP2BYUblTTjmtn0hw4.jpg
                            release_date: '2012-07-17'
                            title: The Dark Knight Rises
                            video: false
                            vote_average: 7.784
                            vote_count: 22843
                          - adult: false
                            backdrop_path: /x5f2uTfw0Pqc5QI4ch5AHICee2o.jpg
                            genre_ids:
                              - 18
                              - 28
                              - 80
                              - 53
                            id: 155
                            media_type: movie
                            original_language: en
                            original_title: The Dark Knight
                            overview: >-
                              Batman raises the stakes in his war on crime. With
                              the help of Lt. Jim Gordon and District Attorney
                              Harvey Dent, Batman sets out to dismantle the
                              remaining criminal organizations that plague the
                              streets. The partnership proves to be effective,
                              but they soon find themselves prey to a reign of
                              chaos unleashed by a rising criminal mastermind
                              known to the terrified citizens of Gotham as the
                              Joker.
                            popularity: 130.7
                            poster_path: /qJ2tW6WMUDux911r6m7haRef0WH.jpg
                            release_date: '2008-07-16'
                            title: The Dark Knight
                            video: false
                            vote_average: 8.518
                            vote_count: 33177
                          - adult: false
                            backdrop_path: /tyBkBHKDrJyVUeCs550kMr61jnq.jpg
                            genre_ids:
                              - 10749
                              - 27
                            id: 6114
                            media_type: movie
                            original_language: en
                            original_title: Bram Stoker's Dracula
                            overview: >-
                              In 19th century England, Count Dracula travels to
                              London and meets Mina Harker, a young woman who
                              appears as the reincarnation of his lost love.
                            popularity: 49.916
                            poster_path: /scFDS0U5uYAjcVTyjNc7GmcZw1q.jpg
                            release_date: '1992-11-13'
                            title: Bram Stoker's Dracula
                            video: false
                            vote_average: 7.5
                            vote_count: 5155
                        known_for_department: Acting
                        name: Gary Oldman
                        original_name: Gary Oldman
                        popularity: 153.196
                        profile_path: /2v9FVVBUrrkW2m3QOcYkuhq9A6o.jpg
                      - adult: false
                        gender: 1
                        id: 974169
                        known_for:
                          - adult: false
                            backdrop_path: /iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg
                            first_air_date: '2022-11-23'
                            genre_ids:
                              - 10765
                              - 9648
                              - 35
                            id: 119051
                            media_type: tv
                            name: Wednesday
                            origin_country:
                              - US
                            original_language: en
                            original_name: Wednesday
                            overview: >-
                              Wednesday Addams is sent to Nevermore Academy, a
                              bizarre boarding school where she attempts to
                              master her psychic powers, stop a monstrous
                              killing spree of the town citizens, and solve the
                              supernatural mystery that affected her family 25
                              years ago — all while navigating her new
                              relationships.
                            popularity: 271.953
                            poster_path: /9PFonBhy4cQy7Jz20NpMygczOkv.jpg
                            vote_average: 8.4
                            vote_count: 8771
                          - adult: false
                            backdrop_path: /ifUfE79O1raUwbaQRIB7XnFz5ZC.jpg
                            genre_ids:
                              - 27
                              - 9648
                            id: 646385
                            media_type: movie
                            original_language: en
                            original_title: Scream
                            overview: >-
                              Twenty-five years after a streak of brutal murders
                              shocked the quiet town of Woodsboro, a new killer
                              has donned the Ghostface mask and begins targeting
                              a group of teenagers to resurrect secrets from the
                              town’s deadly past.
                            popularity: 110.29
                            poster_path: /1m3W6cpgwuIyjtg5nSnPx7yFkXW.jpg
                            release_date: '2022-01-12'
                            title: Scream
                            video: false
                            vote_average: 6.672
                            vote_count: 3336
                          - adult: false
                            backdrop_path: /70Rm9ItxKuEKN8iu6rNjfwAYUCJ.jpg
                            genre_ids:
                              - 27
                              - 9648
                              - 53
                            id: 760104
                            media_type: movie
                            original_language: en
                            original_title: X
                            overview: >-
                              In 1979, a group of young filmmakers set out to
                              make an adult film in rural Texas, but when their
                              reclusive, elderly hosts catch them in the act,
                              the cast find themselves fighting for their lives.
                            popularity: 77.426
                            poster_path: /lopZSVtXzhFY603E9OqF7O1YKsh.jpg
                            release_date: '2022-03-17'
                            title: X
                            video: false
                            vote_average: 6.753
                            vote_count: 3327
                        known_for_department: Acting
                        name: Jenna Ortega
                        original_name: Jenna Ortega
                        popularity: 151.535
                        profile_path: /q1NRzyZQlYkxLY07GO9NVPkQnu8.jpg
                      - adult: false
                        gender: 1
                        id: 1902690
                        known_for:
                          - adult: false
                            backdrop_path: /3Z8TQeeB4wC5zEXw4XugyO0upLV.jpg
                            genre_ids:
                              - 27
                              - 10770
                            id: 480157
                            media_type: movie
                            original_language: en
                            original_title: House of the Witch
                            overview: >-
                              A group of high-school kids set out to play a
                              Halloween prank at an abandoned house, but once
                              they enter they become victims of a demonic witch
                              who has set her wrath upon them.
                            popularity: 6.614
                            poster_path: /fSvhp22gCoHgFMDSnyhrmlo3M0k.jpg
                            release_date: '2017-10-07'
                            title: House of the Witch
                            video: false
                            vote_average: 4.8
                            vote_count: 130
                          - adult: false
                            backdrop_path: /t7nUJ8aLDkGejeLiqrGCN3OGmnD.jpg
                            genre_ids:
                              - 27
                            id: 810271
                            media_type: movie
                            original_language: en
                            original_title: The Resort
                            overview: >-
                              Four friends head to Hawaii to investigate reports
                              of a haunting at an abandoned resort in hopes of
                              finding the infamous Half-Faced Girl. When they
                              arrive, they soon learn you should be careful what
                              you wish for.
                            popularity: 20.797
                            poster_path: /bXZUVJP8Fr3RId7SSsV4RXvjnIh.jpg
                            release_date: '2021-04-30'
                            title: The Resort
                            video: false
                            vote_average: 5.6
                            vote_count: 253
                          - adult: false
                            backdrop_path: /9I6LgZ5110ycg4pyobJxGTFWFCF.jpg
                            first_air_date: '2022-12-18'
                            genre_ids:
                              - 18
                              - 37
                            id: 157744
                            media_type: tv
                            name: '1923'
                            origin_country:
                              - US
                            original_language: en
                            original_name: '1923'
                            overview: >-
                              Follow a new generation of the Dutton family
                              during the early twentieth century when pandemics,
                              historic drought, the end of Prohibition and the
                              Great Depression all plague the mountain west, and
                              the Duttons who call it home.
                            popularity: 123.801
                            poster_path: /zgZRJZvZn5cpsWAB0zMUdad3iZd.jpg
                            vote_average: 8.085
                            vote_count: 396
                        known_for_department: Acting
                        name: Michelle Randolph
                        original_name: Michelle Randolph
                        popularity: 150.846
                        profile_path: /hbe4RPaEzZCvLvyWxV6tvwcFQo4.jpg
                      - adult: false
                        gender: 2
                        id: 1763709
                        known_for:
                          - adult: false
                            backdrop_path: /cyKH7pDFlxIXluqRyNoHHEpxSDX.jpg
                            genre_ids:
                              - 80
                              - 28
                              - 53
                              - 18
                            id: 646097
                            media_type: movie
                            original_language: en
                            original_title: Rebel Ridge
                            overview: >-
                              A former Marine confronts corruption in a small
                              town when local law enforcement unjustly seizes
                              the bag of cash he needs to post his cousin's
                              bail.
                            popularity: 121.449
                            poster_path: /xEt2GSz9z5rSVpIHMiGdtf0czyf.jpg
                            release_date: '2024-08-27'
                            title: Rebel Ridge
                            video: false
                            vote_average: 7.004
                            vote_count: 1108
                          - adult: false
                            backdrop_path: /32yqxyLlWcO81UCx51Jfq9aeJdA.jpg
                            genre_ids:
                              - 53
                              - 9648
                              - 27
                            id: 631843
                            media_type: movie
                            original_language: en
                            original_title: Old
                            overview: >-
                              A group of families on a tropical holiday discover
                              that the secluded beach where they are staying is
                              somehow causing them to age rapidly – reducing
                              their entire lives into a single day.
                            popularity: 46.84
                            poster_path: /vclShucpUmPhdAOmKgf3B3Z4POD.jpg
                            release_date: '2021-07-21'
                            title: Old
                            video: false
                            vote_average: 6.333
                            vote_count: 4463
                          - adult: false
                            backdrop_path: /i9cuGvNP0XhBIHgvTfvsWeMzan4.jpg
                            first_air_date: '2017-04-25'
                            genre_ids:
                              - 18
                            id: 70128
                            media_type: tv
                            name: Genius
                            origin_country:
                              - US
                            original_language: en
                            original_name: Genius
                            overview: >-
                              The life stories of history's greatest minds. From
                              their days as young adults to their final years we
                              see their discoveries, loves, relationships,
                              causes, flaws and genius.
                            popularity: 154.542
                            poster_path: /waCykVbku2Amh0revf535SOnlmm.jpg
                            vote_average: 7.752
                            vote_count: 254
                        known_for_department: Acting
                        name: Aaron Pierre
                        original_name: Aaron Pierre
                        popularity: 150.77
                        profile_path: /hNwZWdT2KxKj1YLbipvtUhNjfAp.jpg
                      - adult: false
                        gender: 1
                        id: 1152083
                        known_for:
                          - adult: false
                            backdrop_path: /oAcV4179Kdpvb2xk9TtS8Ewrp8q.jpg
                            genre_ids:
                              - 35
                              - 10402
                            id: 612706
                            media_type: movie
                            original_language: en
                            original_title: Work It
                            overview: >-
                              A brilliant but clumsy high school senior vows to
                              get into her late father's alma mater by
                              transforming herself and a misfit squad into dance
                              champions.
                            popularity: 21.816
                            poster_path: /b5XfICAvUe8beWExBz97i0Qw4Qh.jpg
                            release_date: '2020-08-07'
                            title: Work It
                            video: false
                            vote_average: 7.548
                            vote_count: 1165
                          - adult: false
                            backdrop_path: /8wfPjfUgmGpqCIW6gS0pS0pixnA.jpg
                            genre_ids:
                              - 35
                              - 18
                              - 10749
                            id: 625450
                            media_type: movie
                            original_language: en
                            original_title: Tall Girl
                            overview: >-
                              Jodi, the tallest girl in her high school, has
                              always felt uncomfortable in her own skin. But
                              after years of slouching, being made fun of, and
                              avoiding attention at all costs, Jodi finally
                              decides to find the confidence to stand tall.
                            popularity: 27.357
                            poster_path: /m0clsFEXidLVJ0TueqWOvvImOMh.jpg
                            release_date: '2019-09-13'
                            title: Tall Girl
                            video: false
                            vote_average: 6.318
                            vote_count: 1869
                          - adult: false
                            backdrop_path: /L7DIiAdP8DnNqOh7454ZrTYspR.jpg
                            genre_ids:
                              - 10402
                              - 18
                              - 10749
                            id: 630566
                            media_type: movie
                            original_language: en
                            original_title: Clouds
                            overview: >-
                              Young musician Zach Sobiech discovers his cancer
                              has spread, leaving him just a few months to live.
                              With limited time, he follows his dream and makes
                              an album, unaware that it will soon be a viral
                              music phenomenon.
                            popularity: 21.308
                            poster_path: /d0OdD1I8qAfETvE9Rp9Voq7R8LR.jpg
                            release_date: '2020-10-09'
                            title: Clouds
                            video: false
                            vote_average: 8.3
                            vote_count: 1006
                        known_for_department: Acting
                        name: Sabrina Carpenter
                        original_name: Sabrina Carpenter
                        popularity: 148.751
                        profile_path: /o0anvGEg34MzoNh6hbJHthB3paF.jpg
                      - adult: false
                        gender: 1
                        id: 224513
                        known_for:
                          - adult: false
                            backdrop_path: /3bWUP9kyf9BxVc0hmZdqXB2w4UP.jpg
                            genre_ids:
                              - 878
                              - 18
                            id: 335984
                            media_type: movie
                            original_language: en
                            original_title: Blade Runner 2049
                            overview: >-
                              Thirty years after the events of the first film, a
                              new blade runner, LAPD Officer K, unearths a
                              long-buried secret that has the potential to
                              plunge what's left of society into chaos. K's
                              discovery leads him on a quest to find Rick
                              Deckard, a former LAPD blade runner who has been
                              missing for 30 years.
                            popularity: 100.447
                            poster_path: /gajva2L0rPYkEWjzgFlBXCAVBE5.jpg
                            release_date: '2017-10-04'
                            title: Blade Runner 2049
                            video: false
                            vote_average: 7.6
                            vote_count: 13741
                          - adult: false
                            backdrop_path: /4HWAQu28e2yaWrtupFPGFkdNU7V.jpg
                            genre_ids:
                              - 35
                              - 80
                              - 9648
                            id: 546554
                            media_type: movie
                            original_language: en
                            original_title: Knives Out
                            overview: >-
                              When renowned crime novelist Harlan Thrombey is
                              found dead at his estate just after his 85th
                              birthday, the inquisitive and debonair Detective
                              Benoit Blanc is mysteriously enlisted to
                              investigate. From Harlan's dysfunctional family to
                              his devoted staff, Blanc sifts through a web of
                              red herrings and self-serving lies to uncover the
                              truth behind Harlan's untimely death.
                            popularity: 141.287
                            poster_path: /pThyQovXQrw2m0s9x82twj48Jq4.jpg
                            release_date: '2019-11-27'
                            title: Knives Out
                            video: false
                            vote_average: 7.8
                            vote_count: 12484
                          - adult: false
                            backdrop_path: /oNoprEND25zXR6Fns8cIZUkuoMc.jpg
                            genre_ids:
                              - 35
                              - 80
                              - 18
                            id: 308266
                            media_type: movie
                            original_language: en
                            original_title: War Dogs
                            overview: >-
                              Based on the true story of two young men, David
                              Packouz and Efraim Diveroli, who won a $300
                              million contract from the Pentagon to arm
                              America's allies in Afghanistan.
                            popularity: 41.177
                            poster_path: /mDcPRjZC1bb6LavFU3gwsWdVfCM.jpg
                            release_date: '2016-08-18'
                            title: War Dogs
                            video: false
                            vote_average: 6.922
                            vote_count: 4931
                        known_for_department: Acting
                        name: Ana de Armas
                        original_name: Ana de Armas
                        popularity: 144.268
                        profile_path: /5Qne374OM0ewMM7uSN9eq9jNrWq.jpg
                      - adult: false
                        gender: 2
                        id: 976
                        known_for:
                          - adult: false
                            backdrop_path: /ibKeXahq4JD63z6uWQphqoJLvNw.jpg
                            genre_ids:
                              - 28
                              - 878
                              - 27
                            id: 345940
                            media_type: movie
                            original_language: en
                            original_title: The Meg
                            overview: >-
                              A deep sea submersible pilot revisits his past
                              fears in the Mariana Trench, and accidentally
                              unleashes the seventy foot ancestor of the Great
                              White Shark believed to be extinct.
                            popularity: 78.63
                            poster_path: /eyWICPcxOuTcDDDbTMOZawoOn8d.jpg
                            release_date: '2018-08-09'
                            title: The Meg
                            video: false
                            vote_average: 6.253
                            vote_count: 7670
                          - adult: false
                            backdrop_path: /70AV2Xx5FQYj20labp0EGdbjI6E.jpg
                            genre_ids:
                              - 80
                              - 28
                              - 53
                            id: 637649
                            media_type: movie
                            original_language: en
                            original_title: Wrath of Man
                            overview: >-
                              A cold and mysterious new security guard for a Los
                              Angeles cash truck company surprises his
                              co-workers when he unleashes precision skills
                              during a heist. The crew is left wondering who he
                              is and where he came from. Soon, the marksman's
                              ultimate motive becomes clear as he takes dramatic
                              and irrevocable steps to settle a score.
                            popularity: 151.765
                            poster_path: /M7SUK85sKjaStg4TKhlAVyGlz3.jpg
                            release_date: '2021-04-22'
                            title: Wrath of Man
                            video: false
                            vote_average: 7.632
                            vote_count: 5359
                          - adult: false
                            backdrop_path: /kWt1OcPgwO1ssu57wgTKmq38JYw.jpg
                            genre_ids:
                              - 28
                              - 80
                              - 53
                            id: 4108
                            media_type: movie
                            original_language: en
                            original_title: The Transporter
                            overview: >-
                              Former Special Forces officer Frank Martin will
                              deliver anything to anyone for the right price,
                              and his no-questions-asked policy puts him in high
                              demand. But when he realizes his latest cargo is
                              alive, it sets in motion a dangerous chain of
                              events. The bound and gagged Lai is being smuggled
                              to France by a shady American businessman, and
                              Frank works to save her as his own illegal
                              activities are uncovered by a French detective.
                            popularity: 53.745
                            poster_path: /xmuCaJJjGbUns8pwMD7M0C0O1uP.jpg
                            release_date: '2002-10-02'
                            title: The Transporter
                            video: false
                            vote_average: 6.712
                            vote_count: 5344
                        known_for_department: Acting
                        name: Jason Statham
                        original_name: Jason Statham
                        popularity: 143.499
                        profile_path: /tI3QoB2KlvXoXM0rH3SVhmcUuxv.jpg
                      - adult: false
                        gender: 1
                        id: 1392137
                        known_for:
                          - adult: false
                            backdrop_path: /xwgBHC2FgoIrQitl8jZwXXdsR9u.jpg
                            genre_ids:
                              - 35
                              - 18
                              - 53
                            id: 466272
                            media_type: movie
                            original_language: en
                            original_title: Once Upon a Time... in Hollywood
                            overview: >-
                              Los Angeles, 1969. TV star Rick Dalton, a
                              struggling actor specializing in westerns, and
                              stuntman Cliff Booth, his best friend, try to
                              survive in a constantly changing movie industry.
                              Dalton is the neighbor of the young and promising
                              actress and model Sharon Tate, who has just
                              married the prestigious Polish director Roman
                              Polanski…
                            popularity: 96.957
                            poster_path: /wQKeS2JrsRF8XSfd9zqflrc5gad.jpg
                            release_date: '2019-07-24'
                            title: Once Upon a Time... in Hollywood
                            video: false
                            vote_average: 7.438
                            vote_count: 13526
                          - adult: false
                            backdrop_path: /oLp6ueqQXNWvWCFwrb6tXDnH0Ye.jpg
                            genre_ids:
                              - 35
                              - 80
                              - 28
                            id: 290250
                            media_type: movie
                            original_language: en
                            original_title: The Nice Guys
                            overview: >-
                              A private eye investigates the apparent suicide of
                              a fading porn star in 1970s Los Angeles and
                              uncovers a conspiracy.
                            popularity: 33.661
                            poster_path: /clq4So9spa9cXk3MZy2iMdqkxP2.jpg
                            release_date: '2016-05-15'
                            title: The Nice Guys
                            video: false
                            vote_average: 7.1
                            vote_count: 7931
                          - adult: false
                            backdrop_path: /b0itXhS69X33BvLi7uWjUZQs9MB.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: 983.442
                            poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                            release_date: '2024-09-07'
                            title: The Substance
                            video: false
                            vote_average: 7.1
                            vote_count: 3102
                        known_for_department: Acting
                        name: Margaret Qualley
                        original_name: Margaret Qualley
                        popularity: 133.926
                        profile_path: /jStNyMj3acpLuH48awLVLqqlyaV.jpg
                    total_pages: 190387
                    total_results: 3807729

````