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

# TV

> Get the trending TV shows on TMDB.



## OpenAPI

````yaml api-reference/openapi.json get /3/trending/tv/{{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/tv/{{time_window}}:
    parameters:
      - name: time_window
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Trending
      summary: TV
      description: Get the trending TV shows on TMDB.
      operationId: tv2
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
      responses:
        '200':
          description: TV
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=88
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 20:22:45 GMT
            ETag:
              schema:
                type: string
                example: W/"5082bcd79224d772f6ba18ef674bbbc2"
            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 ef212a3d9b7a6edd15e1293f0bf1420e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 3ehC77DEuz991ChhFewvzhqHvm-TguTLfmHwluTPV8Kr7bu9Y8rjMQ==
            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: '512'
            x-memc-expires:
              schema:
                type: string
                example: '88'
            x-memc-key:
              schema:
                type: string
                example: 291771ee99aa16d2aca50ababb97eddf
          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: /ukAmSyNdtWduHZfm27R2EOsguKt.jpg
                        first_air_date:
                          type: string
                          example: '2021-09-17'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 10759
                          example:
                            - 10759
                            - 9648
                            - 18
                        id:
                          type: number
                          example: 93405
                        media_type:
                          type: string
                          example: tv
                        name:
                          type: string
                          example: Squid Game
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: KR
                          example:
                            - KR
                        original_language:
                          type: string
                          example: ko
                        original_name:
                          type: string
                          example: 오징어 게임
                        overview:
                          type: string
                          example: >-
                            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:
                          type: number
                          example: 8435.793
                        poster_path:
                          type: string
                          example: /1QdXdRYfktUSONkl1oD5gc6Be0s.jpg
                        vote_average:
                          type: number
                          example: 7.842
                        vote_count:
                          type: number
                          example: 14834
                    example:
                      - 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.842
                        vote_count: 14834
                      - 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: 7.1
                        vote_count: 24
                      - 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.166
                        vote_count: 1233
                      - adult: false
                        backdrop_path: /25yx86n5RrmcmgxFPWWHFcMnMnd.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: /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.506
                        vote_count: 582
                      - adult: false
                        backdrop_path: /lJuQBW4w1x6NgD514xDPqZ2Lbpz.jpg
                        first_air_date: '2023-10-22'
                        genre_ids:
                          - 16
                          - 18
                          - 9648
                        id: 220542
                        media_type: tv
                        name: The Apothecary Diaries
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 薬屋のひとりごと
                        overview: >-
                          Maomao lived a peaceful life with her apothecary
                          father. Until one day, she's sold as a lowly servant
                          to the emperor's palace. But she wasn't meant for a
                          compliant life among royalty. So when imperial heirs
                          fall ill, she decides to step in and find a cure! This
                          catches the eye of Jinshi, a handsome palace official
                          who promotes her. Now, she's making a name for herself
                          solving medical mysteries!
                        popularity: 249.192
                        poster_path: /e3ojpANrFnmJCyeBNTinYwyBCIN.jpg
                        vote_average: 8.8
                        vote_count: 212
                      - 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: 17
                      - adult: false
                        backdrop_path: /5JbWk5f3zSbwkQjbCazWi1adDMl.jpg
                        first_air_date: '2024-12-28'
                        genre_ids:
                          - 18
                          - 10759
                          - 35
                        id: 233912
                        media_type: tv
                        name: Guardians of the Dafeng
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 大奉打更人
                        overview: >-
                          Xu Qi’an, a recent police academy graduate, awakens in
                          a strange world filled with Confucians, Taoists,
                          Buddhists, demons, and warlocks. Facing imminent exile
                          to a remote frontier town, he seizes the chance to
                          change his fate by joining a powerful organization of
                          guardians.
                        popularity: 2384.688
                        poster_path: /zhIvZOCzwjJdn1Xu2KWikC7Luiq.jpg
                        vote_average: 7
                        vote_count: 7
                      - adult: false
                        backdrop_path: /6E0hbesJfpekAqL2AeHYukkHcbD.jpg
                        first_air_date: '2024-12-02'
                        genre_ids:
                          - 10759
                          - 10765
                        id: 202879
                        media_type: tv
                        name: 'Star Wars: Skeleton Crew'
                        origin_country:
                          - US
                        original_language: en
                        original_name: 'Star Wars: Skeleton Crew'
                        overview: >-
                          Four ordinary kids search for their home planet after
                          getting lost in the Star Wars galaxy.
                        popularity: 639.251
                        poster_path: /srQbJhLRKoAwRrNN5ga7webPHbC.jpg
                        vote_average: 7.299
                        vote_count: 137
                      - 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: 7
                      - 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.207
                        vote_count: 94
                      - 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: /jmcRdwSOb1Bo1snMtxTSWOqbvgR.jpg
                        first_air_date: '2024-12-15'
                        genre_ids:
                          - 80
                          - 18
                        id: 219937
                        media_type: tv
                        name: 'Dexter: Original Sin'
                        origin_country:
                          - US
                        original_language: en
                        original_name: 'Dexter: Original Sin'
                        overview: >-
                          In 1991 Miami, Dexter Morgan transitions from student
                          to avenging serial killer. When his bloodthirsty urges
                          can't be ignored any longer, Dexter must learn to
                          channel his inner darkness. With the guidance of his
                          father, Harry, he adopts a Code designed to help him
                          find and kill people who deserve to be eliminated from
                          society without getting on law enforcements' radar.
                          This is a particular challenge for young Dexter as he
                          begins a forensics internship at the Miami Metro
                          Police Department.
                        popularity: 297.49
                        poster_path: /j5bP7spdfS0NpDLKDlqJYyJPi1j.jpg
                        vote_average: 8.8
                        vote_count: 62
                      - adult: false
                        backdrop_path: /bGMLZoRtfIY0OxtCOpZiwkUzeQl.jpg
                        first_air_date: '2023-01-06'
                        genre_ids:
                          - 18
                          - 9648
                          - 10765
                        id: 112581
                        media_type: tv
                        name: The Rig
                        origin_country:
                          - GB
                        original_language: en
                        original_name: The Rig
                        overview: >-
                          When the crew of the Kinloch Bravo find themselves cut
                          off from all communication with the Scottish mainland
                          by a mysterious fog, they must fight to find a way
                          home whilst managing environmental pressures, mounting
                          paranoia and rising tensions. But as the threat facing
                          them reveals itself to be something beyond their
                          wildest imagination, the divided crew must form an
                          alliance to ensure survival.
                        popularity: 139.154
                        poster_path: /o8KxvfdpSVCP53d4S6a4DPHOqNh.jpg
                        vote_average: 6.7
                        vote_count: 166
                      - adult: false
                        backdrop_path: /4Mt7WHox67uJ1yErwTBFcV8KWgG.jpg
                        first_air_date: '1999-10-20'
                        genre_ids:
                          - 10759
                          - 35
                          - 16
                        id: 37854
                        media_type: tv
                        name: One Piece
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: ワンピース
                        overview: >-
                          Years ago, the fearsome Pirate King, Gol D. Roger was
                          executed leaving a huge pile of treasure and the
                          famous "One Piece" behind. Whoever claims the "One
                          Piece" will be named the new King of the Pirates.


                          Monkey D. Luffy, a boy who consumed a "Devil Fruit,"
                          decides to follow in the footsteps of his idol, the
                          pirate Shanks, and find the One Piece. It helps, of
                          course, that his body has the properties of rubber and
                          that he's surrounded by a bevy of skilled fighters and
                          thieves to help him along the way.


                          Luffy will do anything to get the One Piece and become
                          King of the Pirates!
                        popularity: 267.22
                        poster_path: /cMD9Ygz11zjJzAovURpO75Qg7rT.jpg
                        vote_average: 8.7
                        vote_count: 4753
                      - adult: false
                        backdrop_path: /sYXLeu5usz6yEz0k00FYvtEdodD.jpg
                        first_air_date: '2021-11-06'
                        genre_ids:
                          - 16
                          - 10765
                          - 18
                          - 10759
                        id: 94605
                        media_type: tv
                        name: Arcane
                        origin_country:
                          - US
                        original_language: en
                        original_name: Arcane
                        overview: >-
                          Amid the stark discord of twin cities Piltover and
                          Zaun, two sisters fight on rival sides of a war
                          between magic technologies and clashing convictions.
                        popularity: 420.514
                        poster_path: /abf8tHznhSvl9BAElD2cQeRr7do.jpg
                        vote_average: 8.778
                        vote_count: 4749
                      - adult: false
                        backdrop_path: /o0NsbcIvsllg6CJX0FBFY8wWbsn.jpg
                        first_air_date: '2004-10-05'
                        genre_ids:
                          - 10759
                          - 16
                          - 10765
                        id: 30984
                        media_type: tv
                        name: Bleach
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: BLEACH
                        overview: >-
                          For as long as he can remember, Ichigo Kurosaki has
                          been able to see ghosts. But when he meets Rukia, a
                          Soul Reaper who battles evil spirits known as Hollows,
                          he finds his life is changed forever. Now, with a
                          newfound wealth of spiritual energy, Ichigo discovers
                          his true calling: to protect the living and the dead
                          from evil.
                        popularity: 417.936
                        poster_path: /2EewmxXe72ogD0EaWM8gqa0ccIw.jpg
                        vote_average: 8.4
                        vote_count: 1875
                      - adult: false
                        backdrop_path: /mh2UczqEXJJVgqohbyZbHTuxwhL.jpg
                        first_air_date: '2024-11-17'
                        genre_ids:
                          - 18
                        id: 157741
                        media_type: tv
                        name: Landman
                        origin_country:
                          - US
                        original_language: en
                        original_name: Landman
                        overview: >-
                          Set in the proverbial boomtowns of West-Texas and a
                          modern-day tale of fortune-seeking in the world of oil
                          rigs, the series is an upstairs/downstairs story of
                          roughnecks and wildcat billionaires that are fueling a
                          boom so big it’s reshaping our climate, our economy
                          and our geopolitics.
                        popularity: 331.71
                        poster_path: /AnLq5YSssNWpiD06iYF69wFiaNh.jpg
                        vote_average: 7.981
                        vote_count: 78
                      - adult: false
                        backdrop_path: /q8vXtjJn2OPMMQi92HuLb9jHKM3.jpg
                        first_air_date: '2025-01-01'
                        genre_ids:
                          - 18
                          - 80
                          - 9648
                        id: 244243
                        media_type: tv
                        name: Missing You
                        origin_country:
                          - GB
                          - US
                        original_language: en
                        original_name: Missing You
                        overview: >-
                          When Detective Kat Donovan matches on a dating app
                          with the fiancé who disappeared years before, she
                          learns that some secrets are best left in the past.
                        popularity: 380.725
                        poster_path: /aEiqusZEqOrqHmRtOninChmcOG0.jpg
                        vote_average: 6.3
                        vote_count: 43
                      - adult: false
                        backdrop_path: /5OsiT39OiZNdD0v2LiAcI2TpSYj.jpg
                        first_air_date: '2022-02-17'
                        genre_ids:
                          - 18
                          - 9648
                          - 10765
                        id: 95396
                        media_type: tv
                        name: Severance
                        origin_country:
                          - US
                        original_language: en
                        original_name: Severance
                        overview: >-
                          Mark leads a team of office workers whose memories
                          have been surgically divided between their work and
                          personal lives. When a mysterious colleague appears
                          outside of work, it begins a journey to discover the
                          truth about their jobs.
                        popularity: 224.818
                        poster_path: /Rb7sga832Cyqvafd7CqOzbwdK4.jpg
                        vote_average: 8.4
                        vote_count: 1374
                  total_pages:
                    type: number
                    example: 500
                  total_results:
                    type: number
                    example: 10000
              examples:
                TV:
                  value:
                    page: 1
                    results:
                      - 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.842
                        vote_count: 14834
                      - 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: 7.1
                        vote_count: 24
                      - 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.166
                        vote_count: 1233
                      - adult: false
                        backdrop_path: /25yx86n5RrmcmgxFPWWHFcMnMnd.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: /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.506
                        vote_count: 582
                      - adult: false
                        backdrop_path: /lJuQBW4w1x6NgD514xDPqZ2Lbpz.jpg
                        first_air_date: '2023-10-22'
                        genre_ids:
                          - 16
                          - 18
                          - 9648
                        id: 220542
                        media_type: tv
                        name: The Apothecary Diaries
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 薬屋のひとりごと
                        overview: >-
                          Maomao lived a peaceful life with her apothecary
                          father. Until one day, she's sold as a lowly servant
                          to the emperor's palace. But she wasn't meant for a
                          compliant life among royalty. So when imperial heirs
                          fall ill, she decides to step in and find a cure! This
                          catches the eye of Jinshi, a handsome palace official
                          who promotes her. Now, she's making a name for herself
                          solving medical mysteries!
                        popularity: 249.192
                        poster_path: /e3ojpANrFnmJCyeBNTinYwyBCIN.jpg
                        vote_average: 8.8
                        vote_count: 212
                      - 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: 17
                      - adult: false
                        backdrop_path: /5JbWk5f3zSbwkQjbCazWi1adDMl.jpg
                        first_air_date: '2024-12-28'
                        genre_ids:
                          - 18
                          - 10759
                          - 35
                        id: 233912
                        media_type: tv
                        name: Guardians of the Dafeng
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 大奉打更人
                        overview: >-
                          Xu Qi’an, a recent police academy graduate, awakens in
                          a strange world filled with Confucians, Taoists,
                          Buddhists, demons, and warlocks. Facing imminent exile
                          to a remote frontier town, he seizes the chance to
                          change his fate by joining a powerful organization of
                          guardians.
                        popularity: 2384.688
                        poster_path: /zhIvZOCzwjJdn1Xu2KWikC7Luiq.jpg
                        vote_average: 7
                        vote_count: 7
                      - adult: false
                        backdrop_path: /6E0hbesJfpekAqL2AeHYukkHcbD.jpg
                        first_air_date: '2024-12-02'
                        genre_ids:
                          - 10759
                          - 10765
                        id: 202879
                        media_type: tv
                        name: 'Star Wars: Skeleton Crew'
                        origin_country:
                          - US
                        original_language: en
                        original_name: 'Star Wars: Skeleton Crew'
                        overview: >-
                          Four ordinary kids search for their home planet after
                          getting lost in the Star Wars galaxy.
                        popularity: 639.251
                        poster_path: /srQbJhLRKoAwRrNN5ga7webPHbC.jpg
                        vote_average: 7.299
                        vote_count: 137
                      - 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: 7
                      - 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.207
                        vote_count: 94
                      - 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: /jmcRdwSOb1Bo1snMtxTSWOqbvgR.jpg
                        first_air_date: '2024-12-15'
                        genre_ids:
                          - 80
                          - 18
                        id: 219937
                        media_type: tv
                        name: 'Dexter: Original Sin'
                        origin_country:
                          - US
                        original_language: en
                        original_name: 'Dexter: Original Sin'
                        overview: >-
                          In 1991 Miami, Dexter Morgan transitions from student
                          to avenging serial killer. When his bloodthirsty urges
                          can't be ignored any longer, Dexter must learn to
                          channel his inner darkness. With the guidance of his
                          father, Harry, he adopts a Code designed to help him
                          find and kill people who deserve to be eliminated from
                          society without getting on law enforcements' radar.
                          This is a particular challenge for young Dexter as he
                          begins a forensics internship at the Miami Metro
                          Police Department.
                        popularity: 297.49
                        poster_path: /j5bP7spdfS0NpDLKDlqJYyJPi1j.jpg
                        vote_average: 8.8
                        vote_count: 62
                      - adult: false
                        backdrop_path: /bGMLZoRtfIY0OxtCOpZiwkUzeQl.jpg
                        first_air_date: '2023-01-06'
                        genre_ids:
                          - 18
                          - 9648
                          - 10765
                        id: 112581
                        media_type: tv
                        name: The Rig
                        origin_country:
                          - GB
                        original_language: en
                        original_name: The Rig
                        overview: >-
                          When the crew of the Kinloch Bravo find themselves cut
                          off from all communication with the Scottish mainland
                          by a mysterious fog, they must fight to find a way
                          home whilst managing environmental pressures, mounting
                          paranoia and rising tensions. But as the threat facing
                          them reveals itself to be something beyond their
                          wildest imagination, the divided crew must form an
                          alliance to ensure survival.
                        popularity: 139.154
                        poster_path: /o8KxvfdpSVCP53d4S6a4DPHOqNh.jpg
                        vote_average: 6.7
                        vote_count: 166
                      - adult: false
                        backdrop_path: /4Mt7WHox67uJ1yErwTBFcV8KWgG.jpg
                        first_air_date: '1999-10-20'
                        genre_ids:
                          - 10759
                          - 35
                          - 16
                        id: 37854
                        media_type: tv
                        name: One Piece
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: ワンピース
                        overview: >-
                          Years ago, the fearsome Pirate King, Gol D. Roger was
                          executed leaving a huge pile of treasure and the
                          famous "One Piece" behind. Whoever claims the "One
                          Piece" will be named the new King of the Pirates.


                          Monkey D. Luffy, a boy who consumed a "Devil Fruit,"
                          decides to follow in the footsteps of his idol, the
                          pirate Shanks, and find the One Piece. It helps, of
                          course, that his body has the properties of rubber and
                          that he's surrounded by a bevy of skilled fighters and
                          thieves to help him along the way.


                          Luffy will do anything to get the One Piece and become
                          King of the Pirates!
                        popularity: 267.22
                        poster_path: /cMD9Ygz11zjJzAovURpO75Qg7rT.jpg
                        vote_average: 8.7
                        vote_count: 4753
                      - adult: false
                        backdrop_path: /sYXLeu5usz6yEz0k00FYvtEdodD.jpg
                        first_air_date: '2021-11-06'
                        genre_ids:
                          - 16
                          - 10765
                          - 18
                          - 10759
                        id: 94605
                        media_type: tv
                        name: Arcane
                        origin_country:
                          - US
                        original_language: en
                        original_name: Arcane
                        overview: >-
                          Amid the stark discord of twin cities Piltover and
                          Zaun, two sisters fight on rival sides of a war
                          between magic technologies and clashing convictions.
                        popularity: 420.514
                        poster_path: /abf8tHznhSvl9BAElD2cQeRr7do.jpg
                        vote_average: 8.778
                        vote_count: 4749
                      - adult: false
                        backdrop_path: /o0NsbcIvsllg6CJX0FBFY8wWbsn.jpg
                        first_air_date: '2004-10-05'
                        genre_ids:
                          - 10759
                          - 16
                          - 10765
                        id: 30984
                        media_type: tv
                        name: Bleach
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: BLEACH
                        overview: >-
                          For as long as he can remember, Ichigo Kurosaki has
                          been able to see ghosts. But when he meets Rukia, a
                          Soul Reaper who battles evil spirits known as Hollows,
                          he finds his life is changed forever. Now, with a
                          newfound wealth of spiritual energy, Ichigo discovers
                          his true calling: to protect the living and the dead
                          from evil.
                        popularity: 417.936
                        poster_path: /2EewmxXe72ogD0EaWM8gqa0ccIw.jpg
                        vote_average: 8.4
                        vote_count: 1875
                      - adult: false
                        backdrop_path: /mh2UczqEXJJVgqohbyZbHTuxwhL.jpg
                        first_air_date: '2024-11-17'
                        genre_ids:
                          - 18
                        id: 157741
                        media_type: tv
                        name: Landman
                        origin_country:
                          - US
                        original_language: en
                        original_name: Landman
                        overview: >-
                          Set in the proverbial boomtowns of West-Texas and a
                          modern-day tale of fortune-seeking in the world of oil
                          rigs, the series is an upstairs/downstairs story of
                          roughnecks and wildcat billionaires that are fueling a
                          boom so big it’s reshaping our climate, our economy
                          and our geopolitics.
                        popularity: 331.71
                        poster_path: /AnLq5YSssNWpiD06iYF69wFiaNh.jpg
                        vote_average: 7.981
                        vote_count: 78
                      - adult: false
                        backdrop_path: /q8vXtjJn2OPMMQi92HuLb9jHKM3.jpg
                        first_air_date: '2025-01-01'
                        genre_ids:
                          - 18
                          - 80
                          - 9648
                        id: 244243
                        media_type: tv
                        name: Missing You
                        origin_country:
                          - GB
                          - US
                        original_language: en
                        original_name: Missing You
                        overview: >-
                          When Detective Kat Donovan matches on a dating app
                          with the fiancé who disappeared years before, she
                          learns that some secrets are best left in the past.
                        popularity: 380.725
                        poster_path: /aEiqusZEqOrqHmRtOninChmcOG0.jpg
                        vote_average: 6.3
                        vote_count: 43
                      - adult: false
                        backdrop_path: /5OsiT39OiZNdD0v2LiAcI2TpSYj.jpg
                        first_air_date: '2022-02-17'
                        genre_ids:
                          - 18
                          - 9648
                          - 10765
                        id: 95396
                        media_type: tv
                        name: Severance
                        origin_country:
                          - US
                        original_language: en
                        original_name: Severance
                        overview: >-
                          Mark leads a team of office workers whose memories
                          have been surgically divided between their work and
                          personal lives. When a mysterious colleague appears
                          outside of work, it begins a journey to discover the
                          truth about their jobs.
                        popularity: 224.818
                        poster_path: /Rb7sga832Cyqvafd7CqOzbwdK4.jpg
                        vote_average: 8.4
                        vote_count: 1374
                    total_pages: 500
                    total_results: 10000

````