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

# All

> Get the trending movies, TV shows and people.

This call is similar to how the multi search works in the sense that we return multiple media types (movies, TV shows and people) in a single call to get the most trending data on the entirety of TMDB.

If you would like to only get the trending data by a specific media type, use one of the specific methods;

1. Trending movies

2. Trending TV shows

3. Trending people



## OpenAPI

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


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


      1. **Create a new request token**  

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

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


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


      ## Step 1: Create a request token


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


      ## Step 2: Ask the user for permission


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


      ```

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

      ```


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


      ```

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

      ```


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


      ## Step 3: Create a session ID


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


      ## What about guest sessions?


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


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


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


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/trending/all/{{time_window}}:
    parameters:
      - name: time_window
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Trending
      summary: All
      description: >-
        Get the trending movies, TV shows and people.


        This call is similar to how the multi search works in the sense that we
        return multiple media types (movies, TV shows and people) in a single
        call to get the most trending data on the entirety of TMDB.


        If you would like to only get the trending data by a specific media
        type, use one of the specific methods;


        1. Trending movies


        2. Trending TV shows


        3. Trending people
      operationId: all
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
      responses:
        '200':
          description: All
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=64
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 15:34:22 GMT
            ETag:
              schema:
                type: string
                example: W/"316d236219110a4568bbd3b46dbf3c7e"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 dd11c9768f8b06d6759fe07ff69421ce.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: DY_uYXXWziAHpziXBGjchDNQN9_mTF2dmMEP9D204d_9VDjyx9HO8g==
            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: '536'
            x-memc-expires:
              schema:
                type: string
                example: '64'
            x-memc-key:
              schema:
                type: string
                example: 510a15a44b99e7d3ec895702a72161cc
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /1FxG2lmDYsCM1svJf7H79HNNwu2.jpg
                        first_air_date:
                          type: string
                          example: '2025-01-09'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 37
                          example:
                            - 37
                            - 18
                            - 10759
                        id:
                          type: number
                          example: 215866
                        media_type:
                          type: string
                          example: tv
                        name:
                          type: string
                          example: American Primeval
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: US
                          example:
                            - US
                        original_language:
                          type: string
                          example: en
                        original_name:
                          type: string
                          example: American Primeval
                        original_title:
                          type: string
                          example: Wicked
                        overview:
                          type: string
                          example: >-
                            A mother and son fleeing from their past form a
                            found family while confronting a harsh landscape of
                            freedom and cruelty in the American West.
                        popularity:
                          type: number
                          example: 130.698
                        poster_path:
                          type: string
                          example: /ff0s9OHGNSZL6cVteIb7LNvTnJD.jpg
                        release_date:
                          type: string
                          example: '2024-11-20'
                        title:
                          type: string
                          example: Wicked
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 6.6
                        vote_count:
                          type: number
                          example: 18
                    example:
                      - adult: false
                        backdrop_path: /1FxG2lmDYsCM1svJf7H79HNNwu2.jpg
                        first_air_date: '2025-01-09'
                        genre_ids:
                          - 37
                          - 18
                          - 10759
                        id: 215866
                        media_type: tv
                        name: American Primeval
                        origin_country:
                          - US
                        original_language: en
                        original_name: American Primeval
                        overview: >-
                          A mother and son fleeing from their past form a found
                          family while confronting a harsh landscape of freedom
                          and cruelty in the American West.
                        popularity: 130.698
                        poster_path: /ff0s9OHGNSZL6cVteIb7LNvTnJD.jpg
                        vote_average: 6.6
                        vote_count: 18
                      - adult: false
                        backdrop_path: /sMhDkrG904UcMJyrUtTuJVlsBJq.jpg
                        first_air_date: '2025-01-09'
                        genre_ids:
                          - 80
                          - 18
                          - 10759
                        id: 236429
                        media_type: tv
                        name: On Call
                        origin_country:
                          - US
                        original_language: en
                        original_name: On Call
                        overview: >-
                          Traci Harmon, a veteran female training officer, and
                          her rookie male ride-along, Alex Diaz, navigate the
                          loss of a fellow officer and politics of modern day
                          policing  — in the department and on the streets of
                          Long Beach.
                        popularity: 94.493
                        poster_path: /3MvgPuQfBrJ54lGqTZ6dwhG61rC.jpg
                        vote_average: 7.9
                        vote_count: 15
                      - adult: false
                        backdrop_path: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        media_type: movie
                        original_language: en
                        original_title: Wicked
                        overview: >-
                          In the land of Oz, ostracized and misunderstood
                          green-skinned Elphaba is forced to share a room with
                          the popular aristocrat Glinda at Shiz University, and
                          the two's unlikely friendship is tested as they begin
                          to fulfill their respective destinies as Glinda the
                          Good and the Wicked Witch of the West.
                        popularity: 2260.092
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.3
                        vote_count: 1144
                      - adult: false
                        backdrop_path: /ttXVNM7OFy4YgilB0UZUJE5eZsz.jpg
                        first_air_date: '2023-10-13'
                        genre_ids:
                          - 10759
                          - 10765
                          - 35
                        id: 157004
                        media_type: tv
                        name: Goosebumps
                        origin_country:
                          - US
                        original_language: en
                        original_name: Goosebumps
                        overview: >-
                          A group of five high schoolers embark on a shadowy and
                          twisted journey to investigate the tragic passing
                          three decades earlier of a teen named Harold Biddle –
                          while also unearthing dark secrets from their parents'
                          past.
                        popularity: 134.526
                        poster_path: /aIR1prPYBi8dBbJc5IKEK88uVOE.jpg
                        vote_average: 7.2
                        vote_count: 153
                      - adult: false
                        backdrop_path: /dMloNvayweggmvv0UD0iOJIkkbH.jpg
                        genre_ids:
                          - 53
                          - 18
                          - 80
                          - 28
                        id: 1261501
                        media_type: movie
                        original_language: fr
                        original_title: Ad Vitam
                        overview: >-
                          After escaping an attempted murder, Franck Lazarev
                          must find his wife Léo, who has been kidnapped by a
                          mysterious group of armed men. He is caught up by his
                          past as a former member of the French Elite
                          Intervention Squad and pulled into a state affair far
                          beyond his control.
                        popularity: 41.198
                        poster_path: /dOpSxmD3FWfl6SK8SLXw9uwcO05.jpg
                        release_date: '2025-01-10'
                        title: Ad Vitam
                        video: false
                        vote_average: 5.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /ukAmSyNdtWduHZfm27R2EOsguKt.jpg
                        first_air_date: '2021-09-17'
                        genre_ids:
                          - 10759
                          - 9648
                          - 18
                        id: 93405
                        media_type: tv
                        name: Squid Game
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 오징어 게임
                        overview: >-
                          Hundreds of cash-strapped players accept a strange
                          invitation to compete in children's games. Inside, a
                          tempting prize awaits — with deadly high stakes.
                        popularity: 8435.793
                        poster_path: /1QdXdRYfktUSONkl1oD5gc6Be0s.jpg
                        vote_average: 7.8
                        vote_count: 14829
                      - adult: false
                        backdrop_path: /lN13BPAEnc5iXmoxxBQHOZ1ScfZ.jpg
                        first_air_date: '2019-07-05'
                        genre_ids:
                          - 10759
                          - 16
                          - 35
                          - 10765
                        id: 86031
                        media_type: tv
                        name: Dr. STONE
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: Dr.STONE
                        overview: >-
                          One fateful day, all of humanity was petrified by a
                          blinding flash of light. After several millennia, high
                          schooler Taiju awakens and finds himself lost in a
                          world of statues. However, he's not alone! His
                          science-loving friend Senku's been up and running for
                          a few months and he's got a grand plan in mind, to
                          kickstart civilization with the power of science!
                        popularity: 54.769
                        poster_path: /xbZQ3fDl0y5mt0ARwfeyrgQ4JTw.jpg
                        vote_average: 8.5
                        vote_count: 1452
                      - adult: false
                        backdrop_path: /n5FPNMJ0eRoiQrKGfUQQRAZeaxg.jpg
                        first_air_date: '2023-05-04'
                        genre_ids:
                          - 10765
                          - 18
                        id: 125988
                        media_type: tv
                        name: Silo
                        origin_country:
                          - US
                        original_language: en
                        original_name: Silo
                        overview: >-
                          In a ruined and toxic future, thousands live in a
                          giant silo deep underground. After its sheriff breaks
                          a cardinal rule and residents die mysteriously,
                          engineer Juliette starts to uncover shocking secrets
                          and the truth about the silo.
                        popularity: 1015.695
                        poster_path: /tlliQuCupf8fpTH7RAor3aKMGy.jpg
                        vote_average: 8.2
                        vote_count: 1231
                      - adult: false
                        backdrop_path: /z3BkMbCy5ajZPMyKEUwsPHuz2cV.jpg
                        first_air_date: '2025-01-09'
                        genre_ids:
                          - 18
                        id: 250307
                        media_type: tv
                        name: The Pitt
                        origin_country:
                          - US
                        original_language: en
                        original_name: The Pitt
                        overview: >-
                          The staff of Pittsburgh's Trauma Medical Center work
                          around the clock to save lives in an overcrowded and
                          underfunded emergency department.
                        popularity: 74.105
                        poster_path: /6fMGktEDXMZZPACJ5cWkVQ6TSte.jpg
                        vote_average: 8
                        vote_count: 4
                      - adult: false
                        backdrop_path: /jgySLjw9ZDKbnGf0VlhlHT7iHSi.jpg
                        genre_ids:
                          - 9648
                          - 53
                        id: 936245
                        media_type: movie
                        original_language: ko
                        original_title: 히든페이스
                        overview: >-
                          Su-yeon, a cellist in an orchestra led by her fiancé
                          and conductor Sung-jin, disappears one day, leaving
                          behind only a video recording. Sung-jin is devastated
                          over the loss of Su-yeon, but feels a strong
                          attraction to Mi-ju, a cellist who fills in for his
                          fiancée. Then one rainy night, Sung-jin and Mi-ju get
                          swept away by their mutual desires for each other and
                          commit an unforgivable act at Su-yeon’s house.
                          Meanwhile, Su-yeon, who is thought to have gone
                          missing, remains trapped in a secret room inside her
                          house, and watches the naked truth unravel before her.
                        popularity: 278.989
                        poster_path: /kjLbzQVkQovLpUt4rXiFY2Lv4qM.jpg
                        release_date: '2024-11-20'
                        title: Hidden Face
                        video: false
                        vote_average: 3.2
                        vote_count: 11
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        media_type: movie
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 1520.499
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-01-30'
                        title: Flow
                        video: false
                        vote_average: 8.414
                        vote_count: 634
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 18
                          - 14
                          - 27
                        id: 426063
                        media_type: movie
                        original_language: en
                        original_title: Nosferatu
                        overview: >-
                          A gothic tale of obsession between a haunted young
                          woman and the terrifying vampire infatuated with her,
                          causing untold horror in its wake.
                        popularity: 923.788
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.856
                        vote_count: 744
                      - adult: false
                        backdrop_path: /ic82PQy0hixc6wA5vOaK80lUCDw.jpg
                        genre_ids:
                          - 28
                          - 35
                        id: 1255788
                        media_type: movie
                        original_language: fr
                        original_title: Le Jardinier
                        overview: >-
                          Every year the Prime Minister has a list of all kinds
                          of troublemakers eliminated in the name of the famous
                          Reason of State. Serge Shuster, Special Adviser to the
                          President of the Republic, finds himself on this list,
                          better known as the Matignon List.  Condemned to
                          certain death and at the heart of an implacable plot
                          and a state secret that also put his family in danger,
                          Serge, his wife and children have only one hope left -
                          their gardener, Léo, who hates it when « slugs »
                          invade his garden... Especially those that want to
                          kill innocent families.
                        popularity: 31.797
                        poster_path: /zvLQXaiHn5g376AuHe8hd0u8tN2.jpg
                        release_date: '2025-01-10'
                        title: The Gardener
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        media_type: movie
                        original_language: en
                        original_title: Sonic the Hedgehog 3
                        overview: >-
                          Sonic, Knuckles, and Tails reunite against a powerful
                          new adversary, Shadow, a mysterious villain with
                          powers unlike anything they have faced before. With
                          their abilities outmatched in every way, Team Sonic
                          must seek out an unlikely alliance in hopes of
                          stopping Shadow and protecting the planet.
                        popularity: 4115.631
                        poster_path: /d8Ryb8AunYAuycVKDp5HpdWPKgC.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.601
                        vote_count: 437
                      - adult: false
                        backdrop_path: /sbBiDH41uDR2PlRtdCYT5c3inyp.jpg
                        first_air_date: '2025-01-08'
                        genre_ids:
                          - 80
                          - 18
                        id: 277805
                        media_type: tv
                        name: Subteran
                        origin_country:
                          - RO
                        original_language: ro
                        original_name: Subteran
                        overview: >-
                          A young mother's life is upended when she finds
                          herself hiding behind a secret identity to escape the
                          Bucharest gang responsible for her fiancé's death.
                        popularity: 72.867
                        poster_path: /zLpmZeJNST8bbiHzFwOY1wcJA4u.jpg
                        vote_average: 8.3
                        vote_count: 6
                      - adult: false
                        backdrop_path: /y8T8BhptuHFPR0hCGcUSMyUfUfm.jpg
                        first_air_date: '2024-12-05'
                        genre_ids:
                          - 16
                          - 10765
                          - 10759
                        id: 219543
                        media_type: tv
                        name: Creature Commandos
                        origin_country:
                          - US
                        original_language: en
                        original_name: Creature Commandos
                        overview: >-
                          Follow the exploits of the Creature Commandos, a
                          secret team of incarcerated monsters recruited for
                          missions deemed too dangerous for humans. When all
                          else fails... they're your last, worst option.
                        popularity: 527.08
                        poster_path: /bB3G6Ug1jfsOUptb0RJsqrgMVta.jpg
                        vote_average: 8.2
                        vote_count: 92
                      - adult: false
                        backdrop_path: /vZG7PrX9HmdgL5qfZRjhJsFYEIA.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                        id: 912649
                        media_type: movie
                        original_language: en
                        original_title: 'Venom: The Last Dance'
                        overview: >-
                          Eddie and Venom are on the run. Hunted by both of
                          their worlds and with the net closing in, the duo are
                          forced into a devastating decision that will bring the
                          curtains down on Venom and Eddie's last dance.
                        popularity: 2911.214
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.803
                        vote_count: 2254
                      - adult: false
                        backdrop_path: /hOrMnYizPOfh9w2SMYoeezCCFSV.jpg
                        first_air_date: '2025-01-08'
                        genre_ids:
                          - 9648
                          - 80
                          - 18
                        id: 230127
                        media_type: tv
                        name: Hound's Hill
                        origin_country:
                          - PL
                        original_language: pl
                        original_name: Wzgórze psów
                        overview: >-
                          A successful and renowned novelist — haunted by trauma
                          and a mysterious blackmailer — returns to his hometown
                          to reckon with his unresolved past.
                        popularity: 91.23
                        poster_path: /gLLVz7NFxUERSIVvn6Pap9ZMc5w.jpg
                        vote_average: 8.7
                        vote_count: 6
                      - adult: false
                        backdrop_path: /7h6TqPB3ESmjuVbxCxAeB1c9OB1.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 933260
                        media_type: movie
                        original_language: en
                        original_title: The Substance
                        overview: >-
                          A fading celebrity decides to use a black market drug,
                          a cell-replicating substance that temporarily creates
                          a younger, better version of herself.
                        popularity: 890.175
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.138
                        vote_count: 3127
                      - adult: false
                        backdrop_path: /odVlTMqPPiMksmxpN9cCbPCjUPP.jpg
                        first_air_date: '2024-01-07'
                        genre_ids:
                          - 10759
                          - 10765
                          - 16
                        id: 127532
                        media_type: tv
                        name: Solo Leveling
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 俺だけレベルアップな件
                        overview: >-
                          They say whatever doesn’t kill you makes you stronger,
                          but that’s not the case for the world’s weakest hunter
                          Sung Jinwoo. After being brutally slaughtered by
                          monsters in a high-ranking dungeon, Jinwoo came back
                          with the System, a program only he could see, that’s
                          leveling him up in every way. Now, he’s inspired to
                          discover the secrets behind his powers and the dungeon
                          that spawned them.
                        popularity: 833.367
                        poster_path: /geCRueV3ElhRTr0xtJuEWJt6dJ1.jpg
                        vote_average: 8.503
                        vote_count: 581
                  total_pages:
                    type: number
                    example: 500
                  total_results:
                    type: number
                    example: 10000
              examples:
                All:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /1FxG2lmDYsCM1svJf7H79HNNwu2.jpg
                        first_air_date: '2025-01-09'
                        genre_ids:
                          - 37
                          - 18
                          - 10759
                        id: 215866
                        media_type: tv
                        name: American Primeval
                        origin_country:
                          - US
                        original_language: en
                        original_name: American Primeval
                        overview: >-
                          A mother and son fleeing from their past form a found
                          family while confronting a harsh landscape of freedom
                          and cruelty in the American West.
                        popularity: 130.698
                        poster_path: /ff0s9OHGNSZL6cVteIb7LNvTnJD.jpg
                        vote_average: 6.6
                        vote_count: 18
                      - adult: false
                        backdrop_path: /sMhDkrG904UcMJyrUtTuJVlsBJq.jpg
                        first_air_date: '2025-01-09'
                        genre_ids:
                          - 80
                          - 18
                          - 10759
                        id: 236429
                        media_type: tv
                        name: On Call
                        origin_country:
                          - US
                        original_language: en
                        original_name: On Call
                        overview: >-
                          Traci Harmon, a veteran female training officer, and
                          her rookie male ride-along, Alex Diaz, navigate the
                          loss of a fellow officer and politics of modern day
                          policing  — in the department and on the streets of
                          Long Beach.
                        popularity: 94.493
                        poster_path: /3MvgPuQfBrJ54lGqTZ6dwhG61rC.jpg
                        vote_average: 7.9
                        vote_count: 15
                      - adult: false
                        backdrop_path: /uKb22E0nlzr914bA9KyA5CVCOlV.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        media_type: movie
                        original_language: en
                        original_title: Wicked
                        overview: >-
                          In the land of Oz, ostracized and misunderstood
                          green-skinned Elphaba is forced to share a room with
                          the popular aristocrat Glinda at Shiz University, and
                          the two's unlikely friendship is tested as they begin
                          to fulfill their respective destinies as Glinda the
                          Good and the Wicked Witch of the West.
                        popularity: 2260.092
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.3
                        vote_count: 1144
                      - adult: false
                        backdrop_path: /ttXVNM7OFy4YgilB0UZUJE5eZsz.jpg
                        first_air_date: '2023-10-13'
                        genre_ids:
                          - 10759
                          - 10765
                          - 35
                        id: 157004
                        media_type: tv
                        name: Goosebumps
                        origin_country:
                          - US
                        original_language: en
                        original_name: Goosebumps
                        overview: >-
                          A group of five high schoolers embark on a shadowy and
                          twisted journey to investigate the tragic passing
                          three decades earlier of a teen named Harold Biddle –
                          while also unearthing dark secrets from their parents'
                          past.
                        popularity: 134.526
                        poster_path: /aIR1prPYBi8dBbJc5IKEK88uVOE.jpg
                        vote_average: 7.2
                        vote_count: 153
                      - adult: false
                        backdrop_path: /dMloNvayweggmvv0UD0iOJIkkbH.jpg
                        genre_ids:
                          - 53
                          - 18
                          - 80
                          - 28
                        id: 1261501
                        media_type: movie
                        original_language: fr
                        original_title: Ad Vitam
                        overview: >-
                          After escaping an attempted murder, Franck Lazarev
                          must find his wife Léo, who has been kidnapped by a
                          mysterious group of armed men. He is caught up by his
                          past as a former member of the French Elite
                          Intervention Squad and pulled into a state affair far
                          beyond his control.
                        popularity: 41.198
                        poster_path: /dOpSxmD3FWfl6SK8SLXw9uwcO05.jpg
                        release_date: '2025-01-10'
                        title: Ad Vitam
                        video: false
                        vote_average: 5.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /ukAmSyNdtWduHZfm27R2EOsguKt.jpg
                        first_air_date: '2021-09-17'
                        genre_ids:
                          - 10759
                          - 9648
                          - 18
                        id: 93405
                        media_type: tv
                        name: Squid Game
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 오징어 게임
                        overview: >-
                          Hundreds of cash-strapped players accept a strange
                          invitation to compete in children's games. Inside, a
                          tempting prize awaits — with deadly high stakes.
                        popularity: 8435.793
                        poster_path: /1QdXdRYfktUSONkl1oD5gc6Be0s.jpg
                        vote_average: 7.8
                        vote_count: 14829
                      - adult: false
                        backdrop_path: /lN13BPAEnc5iXmoxxBQHOZ1ScfZ.jpg
                        first_air_date: '2019-07-05'
                        genre_ids:
                          - 10759
                          - 16
                          - 35
                          - 10765
                        id: 86031
                        media_type: tv
                        name: Dr. STONE
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: Dr.STONE
                        overview: >-
                          One fateful day, all of humanity was petrified by a
                          blinding flash of light. After several millennia, high
                          schooler Taiju awakens and finds himself lost in a
                          world of statues. However, he's not alone! His
                          science-loving friend Senku's been up and running for
                          a few months and he's got a grand plan in mind, to
                          kickstart civilization with the power of science!
                        popularity: 54.769
                        poster_path: /xbZQ3fDl0y5mt0ARwfeyrgQ4JTw.jpg
                        vote_average: 8.5
                        vote_count: 1452
                      - adult: false
                        backdrop_path: /n5FPNMJ0eRoiQrKGfUQQRAZeaxg.jpg
                        first_air_date: '2023-05-04'
                        genre_ids:
                          - 10765
                          - 18
                        id: 125988
                        media_type: tv
                        name: Silo
                        origin_country:
                          - US
                        original_language: en
                        original_name: Silo
                        overview: >-
                          In a ruined and toxic future, thousands live in a
                          giant silo deep underground. After its sheriff breaks
                          a cardinal rule and residents die mysteriously,
                          engineer Juliette starts to uncover shocking secrets
                          and the truth about the silo.
                        popularity: 1015.695
                        poster_path: /tlliQuCupf8fpTH7RAor3aKMGy.jpg
                        vote_average: 8.2
                        vote_count: 1231
                      - adult: false
                        backdrop_path: /z3BkMbCy5ajZPMyKEUwsPHuz2cV.jpg
                        first_air_date: '2025-01-09'
                        genre_ids:
                          - 18
                        id: 250307
                        media_type: tv
                        name: The Pitt
                        origin_country:
                          - US
                        original_language: en
                        original_name: The Pitt
                        overview: >-
                          The staff of Pittsburgh's Trauma Medical Center work
                          around the clock to save lives in an overcrowded and
                          underfunded emergency department.
                        popularity: 74.105
                        poster_path: /6fMGktEDXMZZPACJ5cWkVQ6TSte.jpg
                        vote_average: 8
                        vote_count: 4
                      - adult: false
                        backdrop_path: /jgySLjw9ZDKbnGf0VlhlHT7iHSi.jpg
                        genre_ids:
                          - 9648
                          - 53
                        id: 936245
                        media_type: movie
                        original_language: ko
                        original_title: 히든페이스
                        overview: >-
                          Su-yeon, a cellist in an orchestra led by her fiancé
                          and conductor Sung-jin, disappears one day, leaving
                          behind only a video recording. Sung-jin is devastated
                          over the loss of Su-yeon, but feels a strong
                          attraction to Mi-ju, a cellist who fills in for his
                          fiancée. Then one rainy night, Sung-jin and Mi-ju get
                          swept away by their mutual desires for each other and
                          commit an unforgivable act at Su-yeon’s house.
                          Meanwhile, Su-yeon, who is thought to have gone
                          missing, remains trapped in a secret room inside her
                          house, and watches the naked truth unravel before her.
                        popularity: 278.989
                        poster_path: /kjLbzQVkQovLpUt4rXiFY2Lv4qM.jpg
                        release_date: '2024-11-20'
                        title: Hidden Face
                        video: false
                        vote_average: 3.2
                        vote_count: 11
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        media_type: movie
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 1520.499
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-01-30'
                        title: Flow
                        video: false
                        vote_average: 8.414
                        vote_count: 634
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 18
                          - 14
                          - 27
                        id: 426063
                        media_type: movie
                        original_language: en
                        original_title: Nosferatu
                        overview: >-
                          A gothic tale of obsession between a haunted young
                          woman and the terrifying vampire infatuated with her,
                          causing untold horror in its wake.
                        popularity: 923.788
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.856
                        vote_count: 744
                      - adult: false
                        backdrop_path: /ic82PQy0hixc6wA5vOaK80lUCDw.jpg
                        genre_ids:
                          - 28
                          - 35
                        id: 1255788
                        media_type: movie
                        original_language: fr
                        original_title: Le Jardinier
                        overview: >-
                          Every year the Prime Minister has a list of all kinds
                          of troublemakers eliminated in the name of the famous
                          Reason of State. Serge Shuster, Special Adviser to the
                          President of the Republic, finds himself on this list,
                          better known as the Matignon List.  Condemned to
                          certain death and at the heart of an implacable plot
                          and a state secret that also put his family in danger,
                          Serge, his wife and children have only one hope left -
                          their gardener, Léo, who hates it when « slugs »
                          invade his garden... Especially those that want to
                          kill innocent families.
                        popularity: 31.797
                        poster_path: /zvLQXaiHn5g376AuHe8hd0u8tN2.jpg
                        release_date: '2025-01-10'
                        title: The Gardener
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        media_type: movie
                        original_language: en
                        original_title: Sonic the Hedgehog 3
                        overview: >-
                          Sonic, Knuckles, and Tails reunite against a powerful
                          new adversary, Shadow, a mysterious villain with
                          powers unlike anything they have faced before. With
                          their abilities outmatched in every way, Team Sonic
                          must seek out an unlikely alliance in hopes of
                          stopping Shadow and protecting the planet.
                        popularity: 4115.631
                        poster_path: /d8Ryb8AunYAuycVKDp5HpdWPKgC.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.601
                        vote_count: 437
                      - adult: false
                        backdrop_path: /sbBiDH41uDR2PlRtdCYT5c3inyp.jpg
                        first_air_date: '2025-01-08'
                        genre_ids:
                          - 80
                          - 18
                        id: 277805
                        media_type: tv
                        name: Subteran
                        origin_country:
                          - RO
                        original_language: ro
                        original_name: Subteran
                        overview: >-
                          A young mother's life is upended when she finds
                          herself hiding behind a secret identity to escape the
                          Bucharest gang responsible for her fiancé's death.
                        popularity: 72.867
                        poster_path: /zLpmZeJNST8bbiHzFwOY1wcJA4u.jpg
                        vote_average: 8.3
                        vote_count: 6
                      - adult: false
                        backdrop_path: /y8T8BhptuHFPR0hCGcUSMyUfUfm.jpg
                        first_air_date: '2024-12-05'
                        genre_ids:
                          - 16
                          - 10765
                          - 10759
                        id: 219543
                        media_type: tv
                        name: Creature Commandos
                        origin_country:
                          - US
                        original_language: en
                        original_name: Creature Commandos
                        overview: >-
                          Follow the exploits of the Creature Commandos, a
                          secret team of incarcerated monsters recruited for
                          missions deemed too dangerous for humans. When all
                          else fails... they're your last, worst option.
                        popularity: 527.08
                        poster_path: /bB3G6Ug1jfsOUptb0RJsqrgMVta.jpg
                        vote_average: 8.2
                        vote_count: 92
                      - adult: false
                        backdrop_path: /vZG7PrX9HmdgL5qfZRjhJsFYEIA.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                        id: 912649
                        media_type: movie
                        original_language: en
                        original_title: 'Venom: The Last Dance'
                        overview: >-
                          Eddie and Venom are on the run. Hunted by both of
                          their worlds and with the net closing in, the duo are
                          forced into a devastating decision that will bring the
                          curtains down on Venom and Eddie's last dance.
                        popularity: 2911.214
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.803
                        vote_count: 2254
                      - adult: false
                        backdrop_path: /hOrMnYizPOfh9w2SMYoeezCCFSV.jpg
                        first_air_date: '2025-01-08'
                        genre_ids:
                          - 9648
                          - 80
                          - 18
                        id: 230127
                        media_type: tv
                        name: Hound's Hill
                        origin_country:
                          - PL
                        original_language: pl
                        original_name: Wzgórze psów
                        overview: >-
                          A successful and renowned novelist — haunted by trauma
                          and a mysterious blackmailer — returns to his hometown
                          to reckon with his unresolved past.
                        popularity: 91.23
                        poster_path: /gLLVz7NFxUERSIVvn6Pap9ZMc5w.jpg
                        vote_average: 8.7
                        vote_count: 6
                      - adult: false
                        backdrop_path: /7h6TqPB3ESmjuVbxCxAeB1c9OB1.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 933260
                        media_type: movie
                        original_language: en
                        original_title: The Substance
                        overview: >-
                          A fading celebrity decides to use a black market drug,
                          a cell-replicating substance that temporarily creates
                          a younger, better version of herself.
                        popularity: 890.175
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.138
                        vote_count: 3127
                      - adult: false
                        backdrop_path: /odVlTMqPPiMksmxpN9cCbPCjUPP.jpg
                        first_air_date: '2024-01-07'
                        genre_ids:
                          - 10759
                          - 10765
                          - 16
                        id: 127532
                        media_type: tv
                        name: Solo Leveling
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 俺だけレベルアップな件
                        overview: >-
                          They say whatever doesn’t kill you makes you stronger,
                          but that’s not the case for the world’s weakest hunter
                          Sung Jinwoo. After being brutally slaughtered by
                          monsters in a high-ranking dungeon, Jinwoo came back
                          with the System, a program only he could see, that’s
                          leveling him up in every way. Now, he’s inspired to
                          discover the secrets behind his powers and the dungeon
                          that spawned them.
                        popularity: 833.367
                        poster_path: /geCRueV3ElhRTr0xtJuEWJt6dJ1.jpg
                        vote_average: 8.503
                        vote_count: 581
                    total_pages: 500
                    total_results: 10000

````