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

# Similar

> Get the similar TV shows.



## OpenAPI

````yaml api-reference/openapi.json get /3/tv/{{series_id}}/similar
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}}/similar:
    parameters:
      - name: series_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - TV Series
      summary: Similar
      description: Get the similar TV shows.
      operationId: similar1
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Similar
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=14463
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 21:33:37 GMT
            ETag:
              schema:
                type: string
                example: W/"056c20acc556222728ca6169c69e1e4c"
            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 4bae1b9f49186f171a3ffbfd1846acba.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: 4NXQ_fHH6zT7oo7ae0wtsc0aBEE7W9jyaSaYXmmmylmJyAN1aZF46g==
            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: '8794'
            x-memc-expires:
              schema:
                type: string
                example: '14463'
            x-memc-key:
              schema:
                type: string
                example: c5176b04b9717e47819dfd2b182e3e54
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /rvI4N7I0sI1VNQPp6uRljIJuwkp.jpg
                        first_air_date:
                          type: string
                          example: '2022-07-29'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 9648
                          example:
                            - 9648
                            - 18
                            - 80
                        id:
                          type: number
                          example: 155226
                        name:
                          type: string
                          example: Big Mouth
                        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: >-
                            A lawyer with a ten-percent winning rate is caught
                            up in a murder case and becomes the notorious and
                            genius con artist, Big Mouse, overnight. In order to
                            survive and protect his family, he tries to reveal
                            the true colors of the privileged people involved in
                            a huge conspiracy.
                        popularity:
                          type: number
                          example: 103.668
                        poster_path:
                          type: string
                          example: /gJDvYUJcPEDJzB3SnQokifPUtRF.jpg
                        vote_average:
                          type: number
                          example: 8.204
                        vote_count:
                          type: number
                          example: 255
                    example:
                      - adult: false
                        backdrop_path: /rvI4N7I0sI1VNQPp6uRljIJuwkp.jpg
                        first_air_date: '2022-07-29'
                        genre_ids:
                          - 9648
                          - 18
                          - 80
                        id: 155226
                        name: Big Mouth
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 빅마우스
                        overview: >-
                          A lawyer with a ten-percent winning rate is caught up
                          in a murder case and becomes the notorious and genius
                          con artist, Big Mouse, overnight. In order to survive
                          and protect his family, he tries to reveal the true
                          colors of the privileged people involved in a huge
                          conspiracy.
                        popularity: 103.668
                        poster_path: /gJDvYUJcPEDJzB3SnQokifPUtRF.jpg
                        vote_average: 8.204
                        vote_count: 255
                      - adult: false
                        backdrop_path: /as6C0PWXWtzg2wMOOXjpXmdKD8I.jpg
                        first_air_date: '2010-07-02'
                        genre_ids:
                          - 16
                          - 10762
                          - 35
                          - 10765
                          - 10759
                        id: 155256
                        name: Happy Toon
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 开心超人联盟
                        overview: ''
                        popularity: 64.607
                        poster_path: /wqOYz9kpRbznmYPdJFSwjZ4HCT9.jpg
                        vote_average: 7.8
                        vote_count: 5
                      - adult: false
                        backdrop_path: /weo6T4zmgAhN7Jz9phX5sXHHcr5.jpg
                        first_air_date: '2023-11-17'
                        genre_ids:
                          - 16
                          - 10759
                          - 35
                          - 10765
                        id: 155292
                        name: Scott Pilgrim Takes Off
                        origin_country:
                          - JP
                          - GB
                          - US
                        original_language: en
                        original_name: Scott Pilgrim Takes Off
                        overview: >-
                          Scott Pilgrim meets the girl of his dreams, Ramona
                          Flowers, only to find out her seven evil exes stand in
                          the way of their love.
                        popularity: 52.134
                        poster_path: /nHROk2C6bv8LqtvyYd0tCMURbxC.jpg
                        vote_average: 8.111
                        vote_count: 284
                      - adult: false
                        backdrop_path: /vSgHoghjoAdVSi1GnGmfeEO6JRx.jpg
                        first_air_date: '2021-10-06'
                        genre_ids:
                          - 16
                          - 35
                          - 10759
                          - 10765
                        id: 113256
                        name: >-
                          Banished from the Hero's Party, I Decided to Live a
                          Quiet Life in the Countryside
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました
                        overview: >-
                          After being betrayed by the Hero’s party, Red hopes to
                          start anew by opening an apothecary in a small town.
                          He wants to keep his past life secret, but it won’t be
                          easy...especially when a beautiful adventurer from his
                          past asks to move in.
                        popularity: 69.695
                        poster_path: /hk5qqvJLRBDaPYBc8lKkSYQrR1c.jpg
                        vote_average: 7.2
                        vote_count: 70
                      - adult: false
                        backdrop_path: /ihiHcoRfj4ga9xiIrD4KIQA5sO2.jpg
                        first_air_date: '2020-11-28'
                        genre_ids:
                          - 18
                          - 9648
                          - 10759
                        id: 113268
                        name: The Uncanny Counter
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 경이로운 소문
                        overview: >-
                          A group of supernatural demon hunters known as
                          "Counters," each with unique abilities, disguise
                          themselves as employees of a noodle restaurant, while
                          tracking down evil spirits that terrorize the mortal
                          world.
                        popularity: 139.627
                        poster_path: /bsbuXbQqryQ8aJlwXFkFXbrYko1.jpg
                        vote_average: 8.4
                        vote_count: 313
                      - adult: false
                        backdrop_path: /eMMRApghQ9vbLlDjKTXBqbhXEId.jpg
                        first_air_date: '2023-02-27'
                        genre_ids:
                          - 18
                          - 10759
                        id: 222065
                        name: The Lady of the Forest
                        origin_country:
                          - TH
                        original_language: th
                        original_name: ป่านางเสือ
                        overview: >-
                          Dao and her two best friends Pai and Jak-Ka-Jan called
                          themselves ‘Nang Suea’ and they trained hard in the
                          art of fighting to enable them to conquer illigal
                          loggers and drug smugglers.
                        popularity: 38.765
                        poster_path: /3PdsjeELFFzyyKQhGtRpEdKdH0Y.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /nLzFrOdNzBx1qTkjmKaOhRUp2iy.jpg
                        first_air_date: '1994-09-03'
                        genre_ids:
                          - 10759
                          - 10765
                          - 10762
                        id: 518
                        name: VR Troopers
                        origin_country:
                          - JP
                          - US
                        original_language: en
                        original_name: VR Troopers
                        overview: >-
                          Join the VR troopers as they use `Virtual Reality' to
                          stop the evil GrimLord creating havoc.
                        popularity: 228.727
                        poster_path: /71bZ8qGxCeCwPXjdAJQTyerjYe6.jpg
                        vote_average: 8.2
                        vote_count: 36
                      - adult: false
                        backdrop_path: /9DsK7wq8ZTWd7512NQs7x7YE51l.jpg
                        first_air_date: '1983-09-17'
                        genre_ids:
                          - 16
                          - 10765
                          - 35
                          - 10759
                          - 10762
                        id: 553
                        name: Dungeons & Dragons
                        origin_country:
                          - US
                        original_language: en
                        original_name: Dungeons & Dragons
                        overview: >-
                          Six friends are transported into the Dungeons &
                          Dragons realm and must try to find a way home with the
                          help of their guide 'Dungeon Master'.
                        popularity: 33.051
                        poster_path: /i0UKwp1zgfXzVUHpvt9U3m8JkYe.jpg
                        vote_average: 7.9
                        vote_count: 243
                      - adult: false
                        backdrop_path: /bEEeg5AZElE39TKRMJ2hkoD0WR0.jpg
                        first_air_date: '1998-09-26'
                        genre_ids:
                          - 10759
                          - 35
                          - 80
                          - 18
                        id: 586
                        name: Martial Law
                        origin_country:
                          - US
                        original_language: en
                        original_name: Martial Law
                        overview: >-
                          Martial Law is an American/Canadian crime drama that
                          aired on CBS from 1998 to 2000, and was created by
                          Carlton Cuse. The title character, Sammo Law,
                          portrayed by Sammo Hung, was a Chinese law officer and
                          martial arts expert who came to Los Angeles in search
                          of a colleague and remains in the US.


                          The show was a surprise hit, making Hung the only East
                          Asian headlining a prime-time network series in the
                          United States. At the time, Hung was not fluent in
                          English, and he reportedly recited some of his
                          dialogue phonetically. In many scenes, Hung did not
                          speak at all, making Martial Law perhaps the only US
                          television series in history that featured so little
                          dialogue from the lead character.
                        popularity: 74.105
                        poster_path: /iLseFnM1UwzHLQxnNTiCqfRMgkx.jpg
                        vote_average: 7.089
                        vote_count: 95
                      - adult: false
                        backdrop_path: /8LaQ8T9iMQeU207awX2RPWLSTEf.jpg
                        first_air_date: '1992-09-19'
                        genre_ids:
                          - 10759
                          - 18
                          - 80
                        id: 600
                        name: Renegade
                        origin_country:
                          - US
                        original_language: en
                        original_name: Renegade
                        overview: >-
                          Framed for murder, Detective Reno Raines becomes a
                          fugitive bounty hunter who fights crime while trying
                          to clear his name. His troubles began after he
                          testified about police corruption, leading Lt. Donald
                          Dixon to set him up.
                        popularity: 156.986
                        poster_path: /xdpsXW6uAJDWOA0xsWX6tJACQmF.jpg
                        vote_average: 6.648
                        vote_count: 118
                      - adult: false
                        backdrop_path: /4PhaaA593zHfAyYUIXVWTih3qcD.jpg
                        first_air_date: '1996-09-27'
                        genre_ids:
                          - 35
                          - 10751
                          - 10765
                          - 10762
                        id: 605
                        name: Sabrina, the Teenage Witch
                        origin_country:
                          - US
                        original_language: en
                        original_name: Sabrina, the Teenage Witch
                        overview: >-
                          On her sixteenth birthday, Sabrina Spellman discovers
                          she has magical powers. She lives with her
                          600-year-old aunts Hilda and Zelda as well as talking
                          cat Salem in the fictional town of Westbridge,
                          Massachusetts.
                        popularity: 172.707
                        poster_path: /yGuzsFLr9s4kr9H7NbgrFiaIfUc.jpg
                        vote_average: 7.8
                        vote_count: 1105
                      - adult: false
                        backdrop_path: /vhRbop5ftTRVtZOOwv6TON73H8B.jpg
                        first_air_date: '2018-10-29'
                        genre_ids:
                          - 35
                          - 18
                        id: 83833
                        name: Tang Dynasty Tour
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 唐砖
                        overview: >-
                          After being caught in a sandstorm during an
                          archaeological expedition, Yun Ye is shocked to find
                          himself transported back to the Tang Dynasty. Using
                          his modern knowledge, he builds a stable life and
                          gradually climbs the ranks as a court official,
                          forming a friendship with the Crown Prince and
                          rekindling a past romance.
                        popularity: 87.929
                        poster_path: /piiwZvf3P4JqIMjYIFFft9abumt.jpg
                        vote_average: 6.8
                        vote_count: 5
                      - adult: false
                        backdrop_path: /gw7NInCijR7eA1mTllrtxB7shBJ.jpg
                        first_air_date: '2020-11-20'
                        genre_ids:
                          - 35
                          - 18
                        id: 113457
                        name: Mismatched
                        origin_country:
                          - IN
                        original_language: hi
                        original_name: Mismatched
                        overview: >-
                          After a disastrous set-up by their families, two teens
                          strike up a tentative friendship at their summer
                          program - but deeper feelings aren't far behind.
                        popularity: 56.122
                        poster_path: /l65kfL6qhTWd858OqGTr3RWwAUj.jpg
                        vote_average: 6.5
                        vote_count: 26
                      - adult: false
                        backdrop_path: /30odObsCfnyz8ntoSMHMF6Yp173.jpg
                        first_air_date: '2022-02-03'
                        genre_ids:
                          - 35
                          - 18
                        id: 155742
                        name: Isn't It a Bad Guy?
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: ダメな男じゃダメですか？
                        overview: >-
                          In which a good-looking college student, Gonta
                          Tamachi, reconsiders himself when his powerful
                          grandmother and his body and spirit are replaced.
                        popularity: 6.746
                        poster_path: /q4xhM8DlwHNrxzGszqBh2rfyhh5.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        first_air_date: '2025-01-31'
                        genre_ids:
                          - 16
                          - 10759
                          - 10765
                          - 35
                          - 18
                        id: 249907
                        name: >-
                          Sentenced to Be a Hero: The Prison Records of Penal
                          Hero Unit 9004
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 勇者刑に処す 懲罰勇者9004隊刑務記録
                        overview: >-
                          "Hero" is the worst punishment in the world. For those
                          convicted of heinous crimes, they are sentenced to
                          become a “Hero" and forced to enter the mandatory
                          military service in the war against the Demon Lords.
                          These convicts are not even allowed to die—if killed,
                          they will be resurrected to fight another day. Hero
                          Xylo Forbartz, former head of the Order of the Holy
                          Knights, leads a penal unit of deplorables fighting on
                          the front lines. It’s in these direst of circumstances
                          that he meets Teoritta, one of the world’s the
                          strongest weapons. "When every last enemy has been
                          defeated, you are to shower me with praise and pat my
                          head." In order to survive and to take revenge on
                          those who wronged him, he makes a pact with the
                          goddess and launches headfirst into a maelstrom of war
                          and intrigue.
                        popularity: 2.797
                        poster_path: /jvr0MSux8NU3tnu5YPg7v1ynkE8.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /rILBXokPDoO1ht8mNrUEu3c5shN.jpg
                        first_air_date: '2023-04-18'
                        genre_ids:
                          - 18
                          - 9648
                        id: 222371
                        name: Unknown
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: unknown アンノウン
                        overview: >-
                          Yamihara Kokoro and Asada Toramatsu live in a town
                          that is quite peaceful, until a serial murder case
                          happened where the bodies all had their blood drained
                          out. Five years have passed but the case remains
                          unsolved. Meanwhile, Kokoro and Toramatsu have been in
                          a relationship for a year, but are unable to get
                          married as they are keeping a serious secret from each
                          other. Kokoro is actually a vampire. However, she does
                          not attack humans and live modestly. Toramatsu is a
                          popular resident in the town and is trusted by many.
                          After getting a divorce, Toramatsu got drunk and went
                          back to his old house, where he met Kokoro, the
                          current occupant. As the two continue to keep their
                          secrets hidden, a horrific murder occurs once again in
                          the town.
                        popularity: 14.596
                        poster_path: /cRLMyXexifZ0hNtXMWXAnV1H1BI.jpg
                        vote_average: 6
                        vote_count: 2
                      - adult: false
                        backdrop_path: /ebhP6ripRz3KqSos1z9lZnFzYOl.jpg
                        first_air_date: '2012-10-22'
                        genre_ids:
                          - 18
                        id: 222433
                        name: Cielo de Angelina
                        origin_country:
                          - PH
                        original_language: tl
                        original_name: Cielo de Angelina
                        overview: ''
                        popularity: 7.788
                        poster_path: /c2SuKptKRrpTonBIJICxBGREyXq.jpg
                        vote_average: 7
                        vote_count: 1
                      - adult: false
                        backdrop_path: /jzUF3bpqDnjxK4rFYvYkySGWCLm.jpg
                        first_air_date: '2017-07-03'
                        genre_ids:
                          - 9648
                          - 10759
                          - 10765
                        id: 83919
                        name: 'Ghost Blows Out the Light: Finding Hu Ba Yi'
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 鬼吹灯之牧野诡事
                        overview: >-
                          Hu Tian is a 25-year-old delinquent leading a carefree
                          life with Xiao Jin Ya, whom he considers to be like a
                          sister. One day, a mysterious woman named Bing Lun
                          appears with news of his long-lost parents, who
                          disappeared for more than 20 years. A man named Lei Li
                          also appears and claims to be a friend of his father.
                          Along with his new-found friends, Hu Tian sets out on
                          an expedition to find his long-lost family; while
                          figuring out how to differentiate friend and foes.
                        popularity: 45.739
                        poster_path: /nEcym3i1JYeIqM6qQ3wnVqET9rp.jpg
                        vote_average: 7.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /8D0I0OEtBln0OTUNcBjPd9udeNN.jpg
                        first_air_date: '2022-03-11'
                        genre_ids:
                          - 18
                        id: 155493
                        name: The Last Days of Ptolemy Grey
                        origin_country:
                          - US
                        original_language: en
                        original_name: The Last Days of Ptolemy Grey
                        overview: >-
                          Suddenly left without his trusted caretaker, Ptolemy
                          Grey is assigned to the care of orphaned teenager
                          Robyn. When they learn about a treatment that will
                          restore Ptolemy’s dementia-addled memories, it begins
                          a journey toward shocking truths.
                        popularity: 37.738
                        poster_path: /r82gsvG8sAX6V3gWZL5hgVvu8un.jpg
                        vote_average: 7.492
                        vote_count: 60
                      - adult: false
                        backdrop_path: /4JVmBQpjresuICzZGQueXGDZ81B.jpg
                        first_air_date: '2002-08-20'
                        genre_ids:
                          - 18
                          - 10759
                        id: 113583
                        name: Imperial Guards
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 英雄
                        overview: ''
                        popularity: 13.311
                        poster_path: /6SHhnAGa33LYKUxIGyF5BkJcL5p.jpg
                        vote_average: 0
                        vote_count: 0
                  total_pages:
                    type: number
                    example: 2513
                  total_results:
                    type: number
                    example: 50253
              examples:
                Similar:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /rvI4N7I0sI1VNQPp6uRljIJuwkp.jpg
                        first_air_date: '2022-07-29'
                        genre_ids:
                          - 9648
                          - 18
                          - 80
                        id: 155226
                        name: Big Mouth
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 빅마우스
                        overview: >-
                          A lawyer with a ten-percent winning rate is caught up
                          in a murder case and becomes the notorious and genius
                          con artist, Big Mouse, overnight. In order to survive
                          and protect his family, he tries to reveal the true
                          colors of the privileged people involved in a huge
                          conspiracy.
                        popularity: 103.668
                        poster_path: /gJDvYUJcPEDJzB3SnQokifPUtRF.jpg
                        vote_average: 8.204
                        vote_count: 255
                      - adult: false
                        backdrop_path: /as6C0PWXWtzg2wMOOXjpXmdKD8I.jpg
                        first_air_date: '2010-07-02'
                        genre_ids:
                          - 16
                          - 10762
                          - 35
                          - 10765
                          - 10759
                        id: 155256
                        name: Happy Toon
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 开心超人联盟
                        overview: ''
                        popularity: 64.607
                        poster_path: /wqOYz9kpRbznmYPdJFSwjZ4HCT9.jpg
                        vote_average: 7.8
                        vote_count: 5
                      - adult: false
                        backdrop_path: /weo6T4zmgAhN7Jz9phX5sXHHcr5.jpg
                        first_air_date: '2023-11-17'
                        genre_ids:
                          - 16
                          - 10759
                          - 35
                          - 10765
                        id: 155292
                        name: Scott Pilgrim Takes Off
                        origin_country:
                          - JP
                          - GB
                          - US
                        original_language: en
                        original_name: Scott Pilgrim Takes Off
                        overview: >-
                          Scott Pilgrim meets the girl of his dreams, Ramona
                          Flowers, only to find out her seven evil exes stand in
                          the way of their love.
                        popularity: 52.134
                        poster_path: /nHROk2C6bv8LqtvyYd0tCMURbxC.jpg
                        vote_average: 8.111
                        vote_count: 284
                      - adult: false
                        backdrop_path: /vSgHoghjoAdVSi1GnGmfeEO6JRx.jpg
                        first_air_date: '2021-10-06'
                        genre_ids:
                          - 16
                          - 35
                          - 10759
                          - 10765
                        id: 113256
                        name: >-
                          Banished from the Hero's Party, I Decided to Live a
                          Quiet Life in the Countryside
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました
                        overview: >-
                          After being betrayed by the Hero’s party, Red hopes to
                          start anew by opening an apothecary in a small town.
                          He wants to keep his past life secret, but it won’t be
                          easy...especially when a beautiful adventurer from his
                          past asks to move in.
                        popularity: 69.695
                        poster_path: /hk5qqvJLRBDaPYBc8lKkSYQrR1c.jpg
                        vote_average: 7.2
                        vote_count: 70
                      - adult: false
                        backdrop_path: /ihiHcoRfj4ga9xiIrD4KIQA5sO2.jpg
                        first_air_date: '2020-11-28'
                        genre_ids:
                          - 18
                          - 9648
                          - 10759
                        id: 113268
                        name: The Uncanny Counter
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 경이로운 소문
                        overview: >-
                          A group of supernatural demon hunters known as
                          "Counters," each with unique abilities, disguise
                          themselves as employees of a noodle restaurant, while
                          tracking down evil spirits that terrorize the mortal
                          world.
                        popularity: 139.627
                        poster_path: /bsbuXbQqryQ8aJlwXFkFXbrYko1.jpg
                        vote_average: 8.4
                        vote_count: 313
                      - adult: false
                        backdrop_path: /eMMRApghQ9vbLlDjKTXBqbhXEId.jpg
                        first_air_date: '2023-02-27'
                        genre_ids:
                          - 18
                          - 10759
                        id: 222065
                        name: The Lady of the Forest
                        origin_country:
                          - TH
                        original_language: th
                        original_name: ป่านางเสือ
                        overview: >-
                          Dao and her two best friends Pai and Jak-Ka-Jan called
                          themselves ‘Nang Suea’ and they trained hard in the
                          art of fighting to enable them to conquer illigal
                          loggers and drug smugglers.
                        popularity: 38.765
                        poster_path: /3PdsjeELFFzyyKQhGtRpEdKdH0Y.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /nLzFrOdNzBx1qTkjmKaOhRUp2iy.jpg
                        first_air_date: '1994-09-03'
                        genre_ids:
                          - 10759
                          - 10765
                          - 10762
                        id: 518
                        name: VR Troopers
                        origin_country:
                          - JP
                          - US
                        original_language: en
                        original_name: VR Troopers
                        overview: >-
                          Join the VR troopers as they use `Virtual Reality' to
                          stop the evil GrimLord creating havoc.
                        popularity: 228.727
                        poster_path: /71bZ8qGxCeCwPXjdAJQTyerjYe6.jpg
                        vote_average: 8.2
                        vote_count: 36
                      - adult: false
                        backdrop_path: /9DsK7wq8ZTWd7512NQs7x7YE51l.jpg
                        first_air_date: '1983-09-17'
                        genre_ids:
                          - 16
                          - 10765
                          - 35
                          - 10759
                          - 10762
                        id: 553
                        name: Dungeons & Dragons
                        origin_country:
                          - US
                        original_language: en
                        original_name: Dungeons & Dragons
                        overview: >-
                          Six friends are transported into the Dungeons &
                          Dragons realm and must try to find a way home with the
                          help of their guide 'Dungeon Master'.
                        popularity: 33.051
                        poster_path: /i0UKwp1zgfXzVUHpvt9U3m8JkYe.jpg
                        vote_average: 7.9
                        vote_count: 243
                      - adult: false
                        backdrop_path: /bEEeg5AZElE39TKRMJ2hkoD0WR0.jpg
                        first_air_date: '1998-09-26'
                        genre_ids:
                          - 10759
                          - 35
                          - 80
                          - 18
                        id: 586
                        name: Martial Law
                        origin_country:
                          - US
                        original_language: en
                        original_name: Martial Law
                        overview: >-
                          Martial Law is an American/Canadian crime drama that
                          aired on CBS from 1998 to 2000, and was created by
                          Carlton Cuse. The title character, Sammo Law,
                          portrayed by Sammo Hung, was a Chinese law officer and
                          martial arts expert who came to Los Angeles in search
                          of a colleague and remains in the US.


                          The show was a surprise hit, making Hung the only East
                          Asian headlining a prime-time network series in the
                          United States. At the time, Hung was not fluent in
                          English, and he reportedly recited some of his
                          dialogue phonetically. In many scenes, Hung did not
                          speak at all, making Martial Law perhaps the only US
                          television series in history that featured so little
                          dialogue from the lead character.
                        popularity: 74.105
                        poster_path: /iLseFnM1UwzHLQxnNTiCqfRMgkx.jpg
                        vote_average: 7.089
                        vote_count: 95
                      - adult: false
                        backdrop_path: /8LaQ8T9iMQeU207awX2RPWLSTEf.jpg
                        first_air_date: '1992-09-19'
                        genre_ids:
                          - 10759
                          - 18
                          - 80
                        id: 600
                        name: Renegade
                        origin_country:
                          - US
                        original_language: en
                        original_name: Renegade
                        overview: >-
                          Framed for murder, Detective Reno Raines becomes a
                          fugitive bounty hunter who fights crime while trying
                          to clear his name. His troubles began after he
                          testified about police corruption, leading Lt. Donald
                          Dixon to set him up.
                        popularity: 156.986
                        poster_path: /xdpsXW6uAJDWOA0xsWX6tJACQmF.jpg
                        vote_average: 6.648
                        vote_count: 118
                      - adult: false
                        backdrop_path: /4PhaaA593zHfAyYUIXVWTih3qcD.jpg
                        first_air_date: '1996-09-27'
                        genre_ids:
                          - 35
                          - 10751
                          - 10765
                          - 10762
                        id: 605
                        name: Sabrina, the Teenage Witch
                        origin_country:
                          - US
                        original_language: en
                        original_name: Sabrina, the Teenage Witch
                        overview: >-
                          On her sixteenth birthday, Sabrina Spellman discovers
                          she has magical powers. She lives with her
                          600-year-old aunts Hilda and Zelda as well as talking
                          cat Salem in the fictional town of Westbridge,
                          Massachusetts.
                        popularity: 172.707
                        poster_path: /yGuzsFLr9s4kr9H7NbgrFiaIfUc.jpg
                        vote_average: 7.8
                        vote_count: 1105
                      - adult: false
                        backdrop_path: /vhRbop5ftTRVtZOOwv6TON73H8B.jpg
                        first_air_date: '2018-10-29'
                        genre_ids:
                          - 35
                          - 18
                        id: 83833
                        name: Tang Dynasty Tour
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 唐砖
                        overview: >-
                          After being caught in a sandstorm during an
                          archaeological expedition, Yun Ye is shocked to find
                          himself transported back to the Tang Dynasty. Using
                          his modern knowledge, he builds a stable life and
                          gradually climbs the ranks as a court official,
                          forming a friendship with the Crown Prince and
                          rekindling a past romance.
                        popularity: 87.929
                        poster_path: /piiwZvf3P4JqIMjYIFFft9abumt.jpg
                        vote_average: 6.8
                        vote_count: 5
                      - adult: false
                        backdrop_path: /gw7NInCijR7eA1mTllrtxB7shBJ.jpg
                        first_air_date: '2020-11-20'
                        genre_ids:
                          - 35
                          - 18
                        id: 113457
                        name: Mismatched
                        origin_country:
                          - IN
                        original_language: hi
                        original_name: Mismatched
                        overview: >-
                          After a disastrous set-up by their families, two teens
                          strike up a tentative friendship at their summer
                          program - but deeper feelings aren't far behind.
                        popularity: 56.122
                        poster_path: /l65kfL6qhTWd858OqGTr3RWwAUj.jpg
                        vote_average: 6.5
                        vote_count: 26
                      - adult: false
                        backdrop_path: /30odObsCfnyz8ntoSMHMF6Yp173.jpg
                        first_air_date: '2022-02-03'
                        genre_ids:
                          - 35
                          - 18
                        id: 155742
                        name: Isn't It a Bad Guy?
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: ダメな男じゃダメですか？
                        overview: >-
                          In which a good-looking college student, Gonta
                          Tamachi, reconsiders himself when his powerful
                          grandmother and his body and spirit are replaced.
                        popularity: 6.746
                        poster_path: /q4xhM8DlwHNrxzGszqBh2rfyhh5.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        first_air_date: '2025-01-31'
                        genre_ids:
                          - 16
                          - 10759
                          - 10765
                          - 35
                          - 18
                        id: 249907
                        name: >-
                          Sentenced to Be a Hero: The Prison Records of Penal
                          Hero Unit 9004
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 勇者刑に処す 懲罰勇者9004隊刑務記録
                        overview: >-
                          "Hero" is the worst punishment in the world. For those
                          convicted of heinous crimes, they are sentenced to
                          become a “Hero" and forced to enter the mandatory
                          military service in the war against the Demon Lords.
                          These convicts are not even allowed to die—if killed,
                          they will be resurrected to fight another day. Hero
                          Xylo Forbartz, former head of the Order of the Holy
                          Knights, leads a penal unit of deplorables fighting on
                          the front lines. It’s in these direst of circumstances
                          that he meets Teoritta, one of the world’s the
                          strongest weapons. "When every last enemy has been
                          defeated, you are to shower me with praise and pat my
                          head." In order to survive and to take revenge on
                          those who wronged him, he makes a pact with the
                          goddess and launches headfirst into a maelstrom of war
                          and intrigue.
                        popularity: 2.797
                        poster_path: /jvr0MSux8NU3tnu5YPg7v1ynkE8.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /rILBXokPDoO1ht8mNrUEu3c5shN.jpg
                        first_air_date: '2023-04-18'
                        genre_ids:
                          - 18
                          - 9648
                        id: 222371
                        name: Unknown
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: unknown アンノウン
                        overview: >-
                          Yamihara Kokoro and Asada Toramatsu live in a town
                          that is quite peaceful, until a serial murder case
                          happened where the bodies all had their blood drained
                          out. Five years have passed but the case remains
                          unsolved. Meanwhile, Kokoro and Toramatsu have been in
                          a relationship for a year, but are unable to get
                          married as they are keeping a serious secret from each
                          other. Kokoro is actually a vampire. However, she does
                          not attack humans and live modestly. Toramatsu is a
                          popular resident in the town and is trusted by many.
                          After getting a divorce, Toramatsu got drunk and went
                          back to his old house, where he met Kokoro, the
                          current occupant. As the two continue to keep their
                          secrets hidden, a horrific murder occurs once again in
                          the town.
                        popularity: 14.596
                        poster_path: /cRLMyXexifZ0hNtXMWXAnV1H1BI.jpg
                        vote_average: 6
                        vote_count: 2
                      - adult: false
                        backdrop_path: /ebhP6ripRz3KqSos1z9lZnFzYOl.jpg
                        first_air_date: '2012-10-22'
                        genre_ids:
                          - 18
                        id: 222433
                        name: Cielo de Angelina
                        origin_country:
                          - PH
                        original_language: tl
                        original_name: Cielo de Angelina
                        overview: ''
                        popularity: 7.788
                        poster_path: /c2SuKptKRrpTonBIJICxBGREyXq.jpg
                        vote_average: 7
                        vote_count: 1
                      - adult: false
                        backdrop_path: /jzUF3bpqDnjxK4rFYvYkySGWCLm.jpg
                        first_air_date: '2017-07-03'
                        genre_ids:
                          - 9648
                          - 10759
                          - 10765
                        id: 83919
                        name: 'Ghost Blows Out the Light: Finding Hu Ba Yi'
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 鬼吹灯之牧野诡事
                        overview: >-
                          Hu Tian is a 25-year-old delinquent leading a carefree
                          life with Xiao Jin Ya, whom he considers to be like a
                          sister. One day, a mysterious woman named Bing Lun
                          appears with news of his long-lost parents, who
                          disappeared for more than 20 years. A man named Lei Li
                          also appears and claims to be a friend of his father.
                          Along with his new-found friends, Hu Tian sets out on
                          an expedition to find his long-lost family; while
                          figuring out how to differentiate friend and foes.
                        popularity: 45.739
                        poster_path: /nEcym3i1JYeIqM6qQ3wnVqET9rp.jpg
                        vote_average: 7.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /8D0I0OEtBln0OTUNcBjPd9udeNN.jpg
                        first_air_date: '2022-03-11'
                        genre_ids:
                          - 18
                        id: 155493
                        name: The Last Days of Ptolemy Grey
                        origin_country:
                          - US
                        original_language: en
                        original_name: The Last Days of Ptolemy Grey
                        overview: >-
                          Suddenly left without his trusted caretaker, Ptolemy
                          Grey is assigned to the care of orphaned teenager
                          Robyn. When they learn about a treatment that will
                          restore Ptolemy’s dementia-addled memories, it begins
                          a journey toward shocking truths.
                        popularity: 37.738
                        poster_path: /r82gsvG8sAX6V3gWZL5hgVvu8un.jpg
                        vote_average: 7.492
                        vote_count: 60
                      - adult: false
                        backdrop_path: /4JVmBQpjresuICzZGQueXGDZ81B.jpg
                        first_air_date: '2002-08-20'
                        genre_ids:
                          - 18
                          - 10759
                        id: 113583
                        name: Imperial Guards
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 英雄
                        overview: ''
                        popularity: 13.311
                        poster_path: /6SHhnAGa33LYKUxIGyF5BkJcL5p.jpg
                        vote_average: 0
                        vote_count: 0
                    total_pages: 2513
                    total_results: 50253

````