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

# Recommendations

> Recommendations



## OpenAPI

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


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


      1. **Create a new request token**  

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

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


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


      ## Step 1: Create a request token


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


      ## Step 2: Ask the user for permission


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


      ```

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

      ```


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


      ```

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

      ```


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


      ## Step 3: Create a session ID


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


      ## What about guest sessions?


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


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


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


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/tv/{{series_id}}/recommendations:
    parameters:
      - name: series_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - TV Series
      summary: Recommendations
      description: Recommendations
      operationId: recommendations1
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Recommendations
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=8146
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 21:26:52 GMT
            ETag:
              schema:
                type: string
                example: W/"9e86f179142791b169ae01137f9dbc2d"
            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 58323cef7927326b4721718ec24b0aae.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: ol7PfWCDfPaSBRWzXIJ5F_mOr15h2TUszrUaZ3XnWegTOpaXfI1kCQ==
            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: '18211'
            x-memc-expires:
              schema:
                type: string
                example: '8146'
            x-memc-key:
              schema:
                type: string
                example: fc01b51d688b5e83990962142d14f67d
          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: /81BCTObfPk0EvarJpUgnGXHvM9x.jpg
                        first_air_date:
                          type: string
                          example: '2014-08-22'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 16
                          example:
                            - 16
                            - 35
                            - 18
                        id:
                          type: number
                          example: 61222
                        media_type:
                          type: string
                          example: tv
                        name:
                          type: string
                          example: BoJack Horseman
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: US
                          example:
                            - US
                        original_language:
                          type: string
                          example: en
                        original_name:
                          type: string
                          example: BoJack Horseman
                        overview:
                          type: string
                          example: >-
                            Meet the most beloved sitcom horse of the 90s - 20
                            years later. BoJack Horseman was the star of the hit
                            TV show "Horsin' Around," but today he's washed up,
                            living in Hollywood, complaining about everything,
                            and wearing colorful sweaters.
                        popularity:
                          type: number
                          example: 269.687
                        poster_path:
                          type: string
                          example: /6JFWzlChcGgLiIUo2COgNlWGFKy.jpg
                        vote_average:
                          type: number
                          example: 8.6
                        vote_count:
                          type: number
                          example: 2436
                    example:
                      - adult: false
                        backdrop_path: /81BCTObfPk0EvarJpUgnGXHvM9x.jpg
                        first_air_date: '2014-08-22'
                        genre_ids:
                          - 16
                          - 35
                          - 18
                        id: 61222
                        media_type: tv
                        name: BoJack Horseman
                        origin_country:
                          - US
                        original_language: en
                        original_name: BoJack Horseman
                        overview: >-
                          Meet the most beloved sitcom horse of the 90s - 20
                          years later. BoJack Horseman was the star of the hit
                          TV show "Horsin' Around," but today he's washed up,
                          living in Hollywood, complaining about everything, and
                          wearing colorful sweaters.
                        popularity: 269.687
                        poster_path: /6JFWzlChcGgLiIUo2COgNlWGFKy.jpg
                        vote_average: 8.6
                        vote_count: 2436
                      - adult: false
                        backdrop_path: /gc8PfyTqzqltKPW3X0cIVUGmagz.jpg
                        first_air_date: '2008-01-20'
                        genre_ids:
                          - 18
                          - 80
                        id: 1396
                        media_type: tv
                        name: Breaking Bad
                        origin_country:
                          - US
                        original_language: en
                        original_name: Breaking Bad
                        overview: >-
                          Walter White, a New Mexico chemistry teacher, is
                          diagnosed with Stage III cancer and given a prognosis
                          of only two years left to live. He becomes filled with
                          a sense of fearlessness and an unrelenting desire to
                          secure his family's financial future at any cost as he
                          enters the dangerous world of drugs and crime.
                        popularity: 842.173
                        poster_path: /ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg
                        vote_average: 8.9
                        vote_count: 14815
                      - adult: false
                        backdrop_path: /ubFM3JrH3p6BtCHWAlOuboC1obg.jpg
                        first_air_date: '1999-03-28'
                        genre_ids:
                          - 16
                          - 35
                          - 10765
                        id: 615
                        media_type: tv
                        name: Futurama
                        origin_country:
                          - US
                        original_language: en
                        original_name: Futurama
                        overview: >-
                          The adventures of a late-20th-century New York City
                          pizza delivery boy, Philip J. Fry, who, after being
                          unwittingly cryogenically frozen for one thousand
                          years, finds employment at Planet Express, an
                          interplanetary delivery company in the
                          retro-futuristic 31st century.
                        popularity: 437.682
                        poster_path: /sdJcX2cXirwQurLLlrDLYov7hcD.jpg
                        vote_average: 8.381
                        vote_count: 3318
                      - adult: false
                        backdrop_path: /41neXsH222hV2zrsTyw8h7javon.jpg
                        first_air_date: '1997-08-13'
                        genre_ids:
                          - 16
                          - 35
                        id: 2190
                        media_type: tv
                        name: South Park
                        origin_country:
                          - US
                        original_language: en
                        original_name: South Park
                        overview: >-
                          Follows the misadventures of four irreverent
                          grade-schoolers in the quiet, dysfunctional town of
                          South Park, Colorado.
                        popularity: 348.879
                        poster_path: /xJnbMTrJ2fl1AXAKx34U4BPvOhs.jpg
                        vote_average: 8.37
                        vote_count: 4380
                      - adult: false
                        backdrop_path: /2MaumbgBlW1NoPo3ZJO38A6v7OS.jpg
                        first_air_date: '2016-07-15'
                        genre_ids:
                          - 18
                          - 10765
                          - 9648
                          - 10759
                        id: 66732
                        media_type: tv
                        name: Stranger Things
                        origin_country:
                          - US
                        original_language: en
                        original_name: Stranger Things
                        overview: >-
                          When a young boy vanishes, a small town uncovers a
                          mystery involving secret experiments, terrifying
                          supernatural forces, and one strange little girl.
                        popularity: 494.693
                        poster_path: /uOOtwVbSr4QDjAGIifLDwpb2Pdl.jpg
                        vote_average: 8.601
                        vote_count: 17863
                      - adult: false
                        backdrop_path: /lhg7eA6CTOCL10QNVdKiyxkgPsL.jpg
                        first_air_date: '2012-06-15'
                        genre_ids:
                          - 16
                          - 35
                          - 9648
                          - 10765
                          - 10762
                          - 10759
                          - 10751
                        id: 40075
                        media_type: tv
                        name: Gravity Falls
                        origin_country:
                          - US
                        original_language: en
                        original_name: Gravity Falls
                        overview: >-
                          Twin brother and sister Dipper and Mabel Pines are in
                          for an unexpected adventure when they spend the summer
                          helping their great uncle Stan run a tourist trap in
                          the mysterious town of Gravity Falls, Oregon.
                        popularity: 273.67
                        poster_path: /dNxEEK5CdNQbp4YcEtICXelRqvP.jpg
                        vote_average: 8.6
                        vote_count: 3026
                      - adult: false
                        backdrop_path: /38aCLy0BdFbOAIEfuDladoITHN0.jpg
                        first_air_date: '2011-12-04'
                        genre_ids:
                          - 10765
                          - 18
                          - 9648
                        id: 42009
                        media_type: tv
                        name: Black Mirror
                        origin_country:
                          - GB
                        original_language: en
                        original_name: Black Mirror
                        overview: >-
                          Over the last ten years, technology has transformed
                          almost every aspect of our lives before we've had time
                          to stop and question it. In every home; on every desk;
                          in every palm - a plasma screen; a monitor; a
                          smartphone - a black mirror of our 21st Century
                          existence.
                        popularity: 326.77
                        poster_path: /5UaYsGZOFhjFDwQh6GuLjjA1WlF.jpg
                        vote_average: 8.288
                        vote_count: 5129
                      - adult: false
                        backdrop_path: /mc3rG5M9dFVjMfaCFNfbD5gu2pK.jpg
                        first_air_date: '2005-02-06'
                        genre_ids:
                          - 16
                          - 35
                        id: 1433
                        media_type: tv
                        name: American Dad!
                        origin_country:
                          - US
                        original_language: en
                        original_name: American Dad!
                        overview: >-
                          The series focuses on an eccentric motley crew that is
                          the Smith family and their three housemates: Father,
                          husband, and breadwinner Stan Smith; his better half
                          housewife, Francine Smith; their college-aged
                          daughter, Hayley Smith; and their high-school-aged
                          son, Steve Smith. Outside of the Smith family, there
                          are three additional main characters, including
                          Hayley's boyfriend turned husband, Jeff Fischer; the
                          family's man-in-a-goldfish-body pet, Klaus; and most
                          notably the family's zany alien, Roger, who is "full
                          of masquerades, brazenness, and shocking antics."
                        popularity: 575.133
                        poster_path: /j84ZtVRoxKWTsQUya77um4l8Dqs.jpg
                        vote_average: 6.957
                        vote_count: 2136
                      - adult: false
                        backdrop_path: /4q6TBkY0Ilx7WtV5LX8HRqNHr5J.jpg
                        first_air_date: '2010-07-25'
                        genre_ids:
                          - 80
                          - 18
                          - 9648
                        id: 19885
                        media_type: tv
                        name: Sherlock
                        origin_country:
                          - GB
                        original_language: en
                        original_name: Sherlock
                        overview: >-
                          A modern update finds the famous sleuth and his doctor
                          partner solving crime in 21st century London.
                        popularity: 210.857
                        poster_path: /7WTsnHkbA0FaG6R9twfFde0I9hl.jpg
                        vote_average: 8.518
                        vote_count: 5514
                      - adult: false
                        backdrop_path: /nDOIsgCYZqEMvomSR6t9QUIPZJS.jpg
                        first_air_date: '2014-04-15'
                        genre_ids:
                          - 80
                          - 18
                        id: 60622
                        media_type: tv
                        name: Fargo
                        origin_country:
                          - US
                        original_language: en
                        original_name: Fargo
                        overview: >-
                          A close-knit anthology series dealing with stories
                          involving malice, violence and murder based in and
                          around Minnesota.
                        popularity: 400.187
                        poster_path: /6U9CPeD8obHzweikFhiLhpc7YBT.jpg
                        vote_average: 8.298
                        vote_count: 2741
                      - adult: false
                        backdrop_path: /bhF63Jd90gRYyTHd4y5GCGA2vX6.jpg
                        first_air_date: '2010-09-06'
                        genre_ids:
                          - 16
                          - 35
                        id: 31132
                        media_type: tv
                        name: Regular Show
                        origin_country:
                          - US
                        original_language: en
                        original_name: Regular Show
                        overview: >-
                          The surreal misadventures of two best friends - a blue
                          jay and a raccoon - as they seek to liven up their
                          mundane jobs as groundskeepers at the local park.
                        popularity: 395.226
                        poster_path: /88dAGv0ywrLJKCynkH226dBwe0i.jpg
                        vote_average: 8.6
                        vote_count: 2027
                      - adult: false
                        backdrop_path: /og2jKploGHYnCz68vV1nRSEE0xV.jpg
                        first_air_date: '2015-02-08'
                        genre_ids:
                          - 80
                          - 18
                        id: 60059
                        media_type: tv
                        name: Better Call Saul
                        origin_country:
                          - US
                        original_language: en
                        original_name: Better Call Saul
                        overview: >-
                          Six years before Saul Goodman meets Walter White. We
                          meet him when the man who will become Saul Goodman is
                          known as Jimmy McGill, a small-time lawyer searching
                          for his destiny, and, more immediately, hustling to
                          make ends meet. Working alongside, and, often, against
                          Jimmy, is “fixer” Mike Ehrmantraut. The series tracks
                          Jimmy’s transformation into Saul Goodman, the man who
                          puts “criminal” in “criminal lawyer".
                        popularity: 311.861
                        poster_path: /zjg4jpK1Wp2kiRvtt5ND0kznako.jpg
                        vote_average: 8.69
                        vote_count: 5351
                      - adult: false
                        backdrop_path: /oJuDMcM8LZA5F5Ahgc9mZg2LRIO.jpg
                        first_air_date: '2011-01-09'
                        genre_ids:
                          - 16
                          - 35
                        id: 32726
                        media_type: tv
                        name: Bob's Burgers
                        origin_country:
                          - US
                        original_language: en
                        original_name: Bob's Burgers
                        overview: >-
                          Bob's Burgers follows a third-generation restaurateur,
                          Bob, as he runs Bob's Burgers with the help of his
                          wife and their three kids. Bob and his quirky family
                          have big ideas about burgers, but fall short on
                          service and sophistication. Despite the greasy
                          counters, lousy location and a dearth of customers,
                          Bob and his family are determined to make Bob's
                          Burgers "grand re-re-re-opening" a success.
                        popularity: 251.433
                        poster_path: /yVz5foNr6nCfathj0igg8RLVGfn.jpg
                        vote_average: 7.826
                        vote_count: 937
                      - adult: false
                        backdrop_path: /qZcyHTTE3DlKaBiIF6tK4acSlNE.jpg
                        first_air_date: '2014-09-21'
                        genre_ids:
                          - 35
                          - 16
                        id: 61593
                        media_type: tv
                        name: Mr. Pickles
                        origin_country:
                          - US
                        original_language: en
                        original_name: Mr. Pickles
                        overview: >-
                          The Goodman family lives with their lovable pet dog,
                          Mr. Pickles, a deviant border collie with a secret
                          satanic streak.
                        popularity: 48.665
                        poster_path: /bSWmZnvXIOoqZ7eLderyInsouiF.jpg
                        vote_average: 8.179
                        vote_count: 787
                      - adult: false
                        backdrop_path: /jbTqU6BJMufoMnPSlO4ThrcXs3Y.jpg
                        first_air_date: '1999-01-31'
                        genre_ids:
                          - 16
                          - 35
                        id: 1434
                        media_type: tv
                        name: Family Guy
                        origin_country:
                          - US
                        original_language: en
                        original_name: Family Guy
                        overview: >-
                          Sick, twisted, politically incorrect and Freakin'
                          Sweet animated series featuring the adventures of the
                          dysfunctional Griffin family. Bumbling Peter and
                          long-suffering Lois have three kids. Stewie (a
                          brilliant but sadistic baby bent on killing his mother
                          and taking over the world), Meg (the oldest, and is
                          the most unpopular girl in town) and Chris (the middle
                          kid, he's not very bright but has a passion for
                          movies). The final member of the family is Brian - a
                          talking dog and much more than a pet, he keeps Stewie
                          in check whilst sipping Martinis and sorting through
                          his own life issues.
                        popularity: 725.706
                        poster_path: /y0HUz4eUNUe3TeEd8fQWYazPaC7.jpg
                        vote_average: 7.373
                        vote_count: 4420
                      - adult: false
                        backdrop_path: /20eIP9o5ebArmu2HxJutaBjhLf4.jpg
                        first_air_date: '2019-05-06'
                        genre_ids:
                          - 18
                        id: 87108
                        media_type: tv
                        name: Chernobyl
                        origin_country:
                          - US
                        original_language: en
                        original_name: Chernobyl
                        overview: >-
                          The true story of one of the worst man-made
                          catastrophes in history: the catastrophic nuclear
                          accident at Chernobyl. A tale of the brave men and
                          women who sacrificed to save Europe from unimaginable
                          disaster.
                        popularity: 188.078
                        poster_path: /7vcwOySsqeyEdmfHQNT5jHCL2gb.jpg
                        vote_average: 8.683
                        vote_count: 6467
                      - adult: false
                        backdrop_path: /uM6WJodeCyTp7h7NhE4rgd0RbRZ.jpg
                        first_air_date: '2017-09-29'
                        genre_ids:
                          - 35
                          - 16
                        id: 74204
                        media_type: tv
                        name: Big Mouth
                        origin_country:
                          - US
                        original_language: en
                        original_name: Big Mouth
                        overview: >-
                          Teenage friends find their lives upended by the
                          wonders and horrors of puberty in this edgy comedy
                          from real-life pals Nick Kroll and Andrew Goldberg.
                        popularity: 242.77
                        poster_path: /1Zio9w1tAd3r5Gu4d9AzTSx2hnT.jpg
                        vote_average: 7.682
                        vote_count: 1063
                      - adult: false
                        backdrop_path: /wyspZaGs7CXceV3Ct7NJhcKNDkn.jpg
                        first_air_date: '2013-09-17'
                        genre_ids:
                          - 35
                          - 80
                        id: 48891
                        media_type: tv
                        name: Brooklyn Nine-Nine
                        origin_country:
                          - US
                        original_language: en
                        original_name: Brooklyn Nine-Nine
                        overview: >-
                          A single-camera ensemble comedy following the lives of
                          an eclectic group of detectives in a New York
                          precinct, including one slacker who is forced to shape
                          up when he gets a new boss.
                        popularity: 686.091
                        poster_path: /qYjAdP0n62dJ9WLl8WGeQj7CGPH.jpg
                        vote_average: 8.2
                        vote_count: 3401
                      - adult: false
                        backdrop_path: /A6tMQAo6t6eRFCPhsrShmxZLqFB.jpg
                        first_air_date: '2009-04-05'
                        genre_ids:
                          - 10759
                          - 16
                          - 10765
                          - 35
                        id: 31911
                        media_type: tv
                        name: 'Fullmetal Alchemist: Brotherhood'
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 鋼の錬金術師 FULLMETAL ALCHEMIST
                        overview: >-
                          Disregard for alchemy’s laws ripped half of Edward
                          Elric’s limbs from his body and left his brother
                          Alphonse’s soul clinging to a suit of armor. To
                          restore what was lost, the brothers seek the
                          Philosopher’s Stone. Enemies and allies – the corrupt
                          military, the Homunculi, and foreign alchemists – will
                          alter the Elric brothers course, but their purpose
                          will remain unchanged and their bond unbreakable.
                        popularity: 165.411
                        poster_path: /5ZFUEOULaVml7pQuXxhpR2SmVUw.jpg
                        vote_average: 8.7
                        vote_count: 2093
                      - adult: false
                        backdrop_path: /mOlEbXcb6ufRJKogI35KqsSlCfB.jpg
                        first_air_date: '2006-10-04'
                        genre_ids:
                          - 16
                          - 9648
                          - 10765
                        id: 13916
                        media_type: tv
                        name: Death Note
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: DEATH NOTE
                        overview: >-
                          Light Yagami is an ace student with great
                          prospects—and he’s bored out of his mind. But all that
                          changes when he finds the Death Note, a notebook
                          dropped by a rogue Shinigami death god. Any human
                          whose name is written in the notebook dies, and Light
                          has vowed to use the power of the Death Note to rid
                          the world of evil. But will Light succeed in his noble
                          goal, or will the Death Note turn him into the very
                          thing he fights against?
                        popularity: 154.292
                        poster_path: /tCZFfYTIwrR7n94J6G14Y4hAFU6.jpg
                        vote_average: 8.634
                        vote_count: 4209
                  total_pages:
                    type: number
                    example: 2
                  total_results:
                    type: number
                    example: 40
              examples:
                Recommendations:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /81BCTObfPk0EvarJpUgnGXHvM9x.jpg
                        first_air_date: '2014-08-22'
                        genre_ids:
                          - 16
                          - 35
                          - 18
                        id: 61222
                        media_type: tv
                        name: BoJack Horseman
                        origin_country:
                          - US
                        original_language: en
                        original_name: BoJack Horseman
                        overview: >-
                          Meet the most beloved sitcom horse of the 90s - 20
                          years later. BoJack Horseman was the star of the hit
                          TV show "Horsin' Around," but today he's washed up,
                          living in Hollywood, complaining about everything, and
                          wearing colorful sweaters.
                        popularity: 269.687
                        poster_path: /6JFWzlChcGgLiIUo2COgNlWGFKy.jpg
                        vote_average: 8.6
                        vote_count: 2436
                      - adult: false
                        backdrop_path: /gc8PfyTqzqltKPW3X0cIVUGmagz.jpg
                        first_air_date: '2008-01-20'
                        genre_ids:
                          - 18
                          - 80
                        id: 1396
                        media_type: tv
                        name: Breaking Bad
                        origin_country:
                          - US
                        original_language: en
                        original_name: Breaking Bad
                        overview: >-
                          Walter White, a New Mexico chemistry teacher, is
                          diagnosed with Stage III cancer and given a prognosis
                          of only two years left to live. He becomes filled with
                          a sense of fearlessness and an unrelenting desire to
                          secure his family's financial future at any cost as he
                          enters the dangerous world of drugs and crime.
                        popularity: 842.173
                        poster_path: /ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg
                        vote_average: 8.9
                        vote_count: 14815
                      - adult: false
                        backdrop_path: /ubFM3JrH3p6BtCHWAlOuboC1obg.jpg
                        first_air_date: '1999-03-28'
                        genre_ids:
                          - 16
                          - 35
                          - 10765
                        id: 615
                        media_type: tv
                        name: Futurama
                        origin_country:
                          - US
                        original_language: en
                        original_name: Futurama
                        overview: >-
                          The adventures of a late-20th-century New York City
                          pizza delivery boy, Philip J. Fry, who, after being
                          unwittingly cryogenically frozen for one thousand
                          years, finds employment at Planet Express, an
                          interplanetary delivery company in the
                          retro-futuristic 31st century.
                        popularity: 437.682
                        poster_path: /sdJcX2cXirwQurLLlrDLYov7hcD.jpg
                        vote_average: 8.381
                        vote_count: 3318
                      - adult: false
                        backdrop_path: /41neXsH222hV2zrsTyw8h7javon.jpg
                        first_air_date: '1997-08-13'
                        genre_ids:
                          - 16
                          - 35
                        id: 2190
                        media_type: tv
                        name: South Park
                        origin_country:
                          - US
                        original_language: en
                        original_name: South Park
                        overview: >-
                          Follows the misadventures of four irreverent
                          grade-schoolers in the quiet, dysfunctional town of
                          South Park, Colorado.
                        popularity: 348.879
                        poster_path: /xJnbMTrJ2fl1AXAKx34U4BPvOhs.jpg
                        vote_average: 8.37
                        vote_count: 4380
                      - adult: false
                        backdrop_path: /2MaumbgBlW1NoPo3ZJO38A6v7OS.jpg
                        first_air_date: '2016-07-15'
                        genre_ids:
                          - 18
                          - 10765
                          - 9648
                          - 10759
                        id: 66732
                        media_type: tv
                        name: Stranger Things
                        origin_country:
                          - US
                        original_language: en
                        original_name: Stranger Things
                        overview: >-
                          When a young boy vanishes, a small town uncovers a
                          mystery involving secret experiments, terrifying
                          supernatural forces, and one strange little girl.
                        popularity: 494.693
                        poster_path: /uOOtwVbSr4QDjAGIifLDwpb2Pdl.jpg
                        vote_average: 8.601
                        vote_count: 17863
                      - adult: false
                        backdrop_path: /lhg7eA6CTOCL10QNVdKiyxkgPsL.jpg
                        first_air_date: '2012-06-15'
                        genre_ids:
                          - 16
                          - 35
                          - 9648
                          - 10765
                          - 10762
                          - 10759
                          - 10751
                        id: 40075
                        media_type: tv
                        name: Gravity Falls
                        origin_country:
                          - US
                        original_language: en
                        original_name: Gravity Falls
                        overview: >-
                          Twin brother and sister Dipper and Mabel Pines are in
                          for an unexpected adventure when they spend the summer
                          helping their great uncle Stan run a tourist trap in
                          the mysterious town of Gravity Falls, Oregon.
                        popularity: 273.67
                        poster_path: /dNxEEK5CdNQbp4YcEtICXelRqvP.jpg
                        vote_average: 8.6
                        vote_count: 3026
                      - adult: false
                        backdrop_path: /38aCLy0BdFbOAIEfuDladoITHN0.jpg
                        first_air_date: '2011-12-04'
                        genre_ids:
                          - 10765
                          - 18
                          - 9648
                        id: 42009
                        media_type: tv
                        name: Black Mirror
                        origin_country:
                          - GB
                        original_language: en
                        original_name: Black Mirror
                        overview: >-
                          Over the last ten years, technology has transformed
                          almost every aspect of our lives before we've had time
                          to stop and question it. In every home; on every desk;
                          in every palm - a plasma screen; a monitor; a
                          smartphone - a black mirror of our 21st Century
                          existence.
                        popularity: 326.77
                        poster_path: /5UaYsGZOFhjFDwQh6GuLjjA1WlF.jpg
                        vote_average: 8.288
                        vote_count: 5129
                      - adult: false
                        backdrop_path: /mc3rG5M9dFVjMfaCFNfbD5gu2pK.jpg
                        first_air_date: '2005-02-06'
                        genre_ids:
                          - 16
                          - 35
                        id: 1433
                        media_type: tv
                        name: American Dad!
                        origin_country:
                          - US
                        original_language: en
                        original_name: American Dad!
                        overview: >-
                          The series focuses on an eccentric motley crew that is
                          the Smith family and their three housemates: Father,
                          husband, and breadwinner Stan Smith; his better half
                          housewife, Francine Smith; their college-aged
                          daughter, Hayley Smith; and their high-school-aged
                          son, Steve Smith. Outside of the Smith family, there
                          are three additional main characters, including
                          Hayley's boyfriend turned husband, Jeff Fischer; the
                          family's man-in-a-goldfish-body pet, Klaus; and most
                          notably the family's zany alien, Roger, who is "full
                          of masquerades, brazenness, and shocking antics."
                        popularity: 575.133
                        poster_path: /j84ZtVRoxKWTsQUya77um4l8Dqs.jpg
                        vote_average: 6.957
                        vote_count: 2136
                      - adult: false
                        backdrop_path: /4q6TBkY0Ilx7WtV5LX8HRqNHr5J.jpg
                        first_air_date: '2010-07-25'
                        genre_ids:
                          - 80
                          - 18
                          - 9648
                        id: 19885
                        media_type: tv
                        name: Sherlock
                        origin_country:
                          - GB
                        original_language: en
                        original_name: Sherlock
                        overview: >-
                          A modern update finds the famous sleuth and his doctor
                          partner solving crime in 21st century London.
                        popularity: 210.857
                        poster_path: /7WTsnHkbA0FaG6R9twfFde0I9hl.jpg
                        vote_average: 8.518
                        vote_count: 5514
                      - adult: false
                        backdrop_path: /nDOIsgCYZqEMvomSR6t9QUIPZJS.jpg
                        first_air_date: '2014-04-15'
                        genre_ids:
                          - 80
                          - 18
                        id: 60622
                        media_type: tv
                        name: Fargo
                        origin_country:
                          - US
                        original_language: en
                        original_name: Fargo
                        overview: >-
                          A close-knit anthology series dealing with stories
                          involving malice, violence and murder based in and
                          around Minnesota.
                        popularity: 400.187
                        poster_path: /6U9CPeD8obHzweikFhiLhpc7YBT.jpg
                        vote_average: 8.298
                        vote_count: 2741
                      - adult: false
                        backdrop_path: /bhF63Jd90gRYyTHd4y5GCGA2vX6.jpg
                        first_air_date: '2010-09-06'
                        genre_ids:
                          - 16
                          - 35
                        id: 31132
                        media_type: tv
                        name: Regular Show
                        origin_country:
                          - US
                        original_language: en
                        original_name: Regular Show
                        overview: >-
                          The surreal misadventures of two best friends - a blue
                          jay and a raccoon - as they seek to liven up their
                          mundane jobs as groundskeepers at the local park.
                        popularity: 395.226
                        poster_path: /88dAGv0ywrLJKCynkH226dBwe0i.jpg
                        vote_average: 8.6
                        vote_count: 2027
                      - adult: false
                        backdrop_path: /og2jKploGHYnCz68vV1nRSEE0xV.jpg
                        first_air_date: '2015-02-08'
                        genre_ids:
                          - 80
                          - 18
                        id: 60059
                        media_type: tv
                        name: Better Call Saul
                        origin_country:
                          - US
                        original_language: en
                        original_name: Better Call Saul
                        overview: >-
                          Six years before Saul Goodman meets Walter White. We
                          meet him when the man who will become Saul Goodman is
                          known as Jimmy McGill, a small-time lawyer searching
                          for his destiny, and, more immediately, hustling to
                          make ends meet. Working alongside, and, often, against
                          Jimmy, is “fixer” Mike Ehrmantraut. The series tracks
                          Jimmy’s transformation into Saul Goodman, the man who
                          puts “criminal” in “criminal lawyer".
                        popularity: 311.861
                        poster_path: /zjg4jpK1Wp2kiRvtt5ND0kznako.jpg
                        vote_average: 8.69
                        vote_count: 5351
                      - adult: false
                        backdrop_path: /oJuDMcM8LZA5F5Ahgc9mZg2LRIO.jpg
                        first_air_date: '2011-01-09'
                        genre_ids:
                          - 16
                          - 35
                        id: 32726
                        media_type: tv
                        name: Bob's Burgers
                        origin_country:
                          - US
                        original_language: en
                        original_name: Bob's Burgers
                        overview: >-
                          Bob's Burgers follows a third-generation restaurateur,
                          Bob, as he runs Bob's Burgers with the help of his
                          wife and their three kids. Bob and his quirky family
                          have big ideas about burgers, but fall short on
                          service and sophistication. Despite the greasy
                          counters, lousy location and a dearth of customers,
                          Bob and his family are determined to make Bob's
                          Burgers "grand re-re-re-opening" a success.
                        popularity: 251.433
                        poster_path: /yVz5foNr6nCfathj0igg8RLVGfn.jpg
                        vote_average: 7.826
                        vote_count: 937
                      - adult: false
                        backdrop_path: /qZcyHTTE3DlKaBiIF6tK4acSlNE.jpg
                        first_air_date: '2014-09-21'
                        genre_ids:
                          - 35
                          - 16
                        id: 61593
                        media_type: tv
                        name: Mr. Pickles
                        origin_country:
                          - US
                        original_language: en
                        original_name: Mr. Pickles
                        overview: >-
                          The Goodman family lives with their lovable pet dog,
                          Mr. Pickles, a deviant border collie with a secret
                          satanic streak.
                        popularity: 48.665
                        poster_path: /bSWmZnvXIOoqZ7eLderyInsouiF.jpg
                        vote_average: 8.179
                        vote_count: 787
                      - adult: false
                        backdrop_path: /jbTqU6BJMufoMnPSlO4ThrcXs3Y.jpg
                        first_air_date: '1999-01-31'
                        genre_ids:
                          - 16
                          - 35
                        id: 1434
                        media_type: tv
                        name: Family Guy
                        origin_country:
                          - US
                        original_language: en
                        original_name: Family Guy
                        overview: >-
                          Sick, twisted, politically incorrect and Freakin'
                          Sweet animated series featuring the adventures of the
                          dysfunctional Griffin family. Bumbling Peter and
                          long-suffering Lois have three kids. Stewie (a
                          brilliant but sadistic baby bent on killing his mother
                          and taking over the world), Meg (the oldest, and is
                          the most unpopular girl in town) and Chris (the middle
                          kid, he's not very bright but has a passion for
                          movies). The final member of the family is Brian - a
                          talking dog and much more than a pet, he keeps Stewie
                          in check whilst sipping Martinis and sorting through
                          his own life issues.
                        popularity: 725.706
                        poster_path: /y0HUz4eUNUe3TeEd8fQWYazPaC7.jpg
                        vote_average: 7.373
                        vote_count: 4420
                      - adult: false
                        backdrop_path: /20eIP9o5ebArmu2HxJutaBjhLf4.jpg
                        first_air_date: '2019-05-06'
                        genre_ids:
                          - 18
                        id: 87108
                        media_type: tv
                        name: Chernobyl
                        origin_country:
                          - US
                        original_language: en
                        original_name: Chernobyl
                        overview: >-
                          The true story of one of the worst man-made
                          catastrophes in history: the catastrophic nuclear
                          accident at Chernobyl. A tale of the brave men and
                          women who sacrificed to save Europe from unimaginable
                          disaster.
                        popularity: 188.078
                        poster_path: /7vcwOySsqeyEdmfHQNT5jHCL2gb.jpg
                        vote_average: 8.683
                        vote_count: 6467
                      - adult: false
                        backdrop_path: /uM6WJodeCyTp7h7NhE4rgd0RbRZ.jpg
                        first_air_date: '2017-09-29'
                        genre_ids:
                          - 35
                          - 16
                        id: 74204
                        media_type: tv
                        name: Big Mouth
                        origin_country:
                          - US
                        original_language: en
                        original_name: Big Mouth
                        overview: >-
                          Teenage friends find their lives upended by the
                          wonders and horrors of puberty in this edgy comedy
                          from real-life pals Nick Kroll and Andrew Goldberg.
                        popularity: 242.77
                        poster_path: /1Zio9w1tAd3r5Gu4d9AzTSx2hnT.jpg
                        vote_average: 7.682
                        vote_count: 1063
                      - adult: false
                        backdrop_path: /wyspZaGs7CXceV3Ct7NJhcKNDkn.jpg
                        first_air_date: '2013-09-17'
                        genre_ids:
                          - 35
                          - 80
                        id: 48891
                        media_type: tv
                        name: Brooklyn Nine-Nine
                        origin_country:
                          - US
                        original_language: en
                        original_name: Brooklyn Nine-Nine
                        overview: >-
                          A single-camera ensemble comedy following the lives of
                          an eclectic group of detectives in a New York
                          precinct, including one slacker who is forced to shape
                          up when he gets a new boss.
                        popularity: 686.091
                        poster_path: /qYjAdP0n62dJ9WLl8WGeQj7CGPH.jpg
                        vote_average: 8.2
                        vote_count: 3401
                      - adult: false
                        backdrop_path: /A6tMQAo6t6eRFCPhsrShmxZLqFB.jpg
                        first_air_date: '2009-04-05'
                        genre_ids:
                          - 10759
                          - 16
                          - 10765
                          - 35
                        id: 31911
                        media_type: tv
                        name: 'Fullmetal Alchemist: Brotherhood'
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 鋼の錬金術師 FULLMETAL ALCHEMIST
                        overview: >-
                          Disregard for alchemy’s laws ripped half of Edward
                          Elric’s limbs from his body and left his brother
                          Alphonse’s soul clinging to a suit of armor. To
                          restore what was lost, the brothers seek the
                          Philosopher’s Stone. Enemies and allies – the corrupt
                          military, the Homunculi, and foreign alchemists – will
                          alter the Elric brothers course, but their purpose
                          will remain unchanged and their bond unbreakable.
                        popularity: 165.411
                        poster_path: /5ZFUEOULaVml7pQuXxhpR2SmVUw.jpg
                        vote_average: 8.7
                        vote_count: 2093
                      - adult: false
                        backdrop_path: /mOlEbXcb6ufRJKogI35KqsSlCfB.jpg
                        first_air_date: '2006-10-04'
                        genre_ids:
                          - 16
                          - 9648
                          - 10765
                        id: 13916
                        media_type: tv
                        name: Death Note
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: DEATH NOTE
                        overview: >-
                          Light Yagami is an ace student with great
                          prospects—and he’s bored out of his mind. But all that
                          changes when he finds the Death Note, a notebook
                          dropped by a rogue Shinigami death god. Any human
                          whose name is written in the notebook dies, and Light
                          has vowed to use the power of the Death Note to rid
                          the world of evil. But will Light succeed in his noble
                          goal, or will the Death Note turn him into the very
                          thing he fights against?
                        popularity: 154.292
                        poster_path: /tCZFfYTIwrR7n94J6G14Y4hAFU6.jpg
                        vote_average: 8.634
                        vote_count: 4209
                    total_pages: 2
                    total_results: 40

````