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

# Popular

> Get a list of TV shows ordered by popularity.

**📘Note**
This call is really just a discover call behind the scenes. If you would like to tweak any of the default filters head over and read about discover.



## OpenAPI

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


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


      1. **Create a new request token**  

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

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


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


      ## Step 1: Create a request token


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


      ## Step 2: Ask the user for permission


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


      ```

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

      ```


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


      ```

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

      ```


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


      ## Step 3: Create a session ID


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


      ## What about guest sessions?


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


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


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


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/tv/popular:
    get:
      tags:
        - TV Series Lists
      summary: Popular
      description: >-
        Get a list of TV shows ordered by popularity.


        **📘Note**

        This call is really just a discover call behind the scenes. If you would
        like to tweak any of the default filters head over and read about
        discover.
      operationId: popular2
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
      responses:
        '200':
          description: Popular
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=17356
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 20:30:58 GMT
            ETag:
              schema:
                type: string
                example: W/"93bcbcb5fc192d01e3681c975221a2bc"
            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 57683e1b4b68ffc4d35501f444414c4c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: TeIvIZR47zwOjG9xwr8VhpwcA6j2MoHCuyTc-jrc3FxQ60GUPCzY2Q==
            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: '6363'
            x-memc-expires:
              schema:
                type: string
                example: '17356'
            x-memc-key:
              schema:
                type: string
                example: 71537d24c76ee334c5e1999ee581c54f
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /ukAmSyNdtWduHZfm27R2EOsguKt.jpg
                        first_air_date:
                          type: string
                          example: '2021-09-17'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 10759
                          example:
                            - 10759
                            - 9648
                            - 18
                        id:
                          type: number
                          example: 93405
                        name:
                          type: string
                          example: Squid Game
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: KR
                          example:
                            - KR
                        original_language:
                          type: string
                          example: ko
                        original_name:
                          type: string
                          example: 오징어 게임
                        overview:
                          type: string
                          example: >-
                            Hundreds of cash-strapped players accept a strange
                            invitation to compete in children's games. Inside, a
                            tempting prize awaits — with deadly high stakes.
                        popularity:
                          type: number
                          example: 8435.793
                        poster_path:
                          type: string
                          example: /1QdXdRYfktUSONkl1oD5gc6Be0s.jpg
                        vote_average:
                          type: number
                          example: 7.842
                        vote_count:
                          type: number
                          example: 14833
                    example:
                      - adult: false
                        backdrop_path: /ukAmSyNdtWduHZfm27R2EOsguKt.jpg
                        first_air_date: '2021-09-17'
                        genre_ids:
                          - 10759
                          - 9648
                          - 18
                        id: 93405
                        name: Squid Game
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 오징어 게임
                        overview: >-
                          Hundreds of cash-strapped players accept a strange
                          invitation to compete in children's games. Inside, a
                          tempting prize awaits — with deadly high stakes.
                        popularity: 8435.793
                        poster_path: /1QdXdRYfktUSONkl1oD5gc6Be0s.jpg
                        vote_average: 7.842
                        vote_count: 14833
                      - adult: false
                        backdrop_path: /mu3lEhGovyhKHPJzb7HNYtZUCDT.jpg
                        first_air_date: '2005-10-13'
                        genre_ids:
                          - 10766
                        id: 206559
                        name: Binnelanders
                        origin_country:
                          - ZA
                        original_language: af
                        original_name: Binnelanders
                        overview: >-
                          A South African Afrikaans soap opera. It is set in and
                          around the fictional private hospital, Binneland
                          Kliniek, in Pretoria, and the storyline follows the
                          trials, trauma and tribulations of the staff and
                          patients of the hospital.
                        popularity: 4638.165
                        poster_path: /3bzECfllho8PphdYujLUIuhncJD.jpg
                        vote_average: 5.6
                        vote_count: 80
                      - adult: false
                        backdrop_path: /cchlQWYrnMPyl1EbjZWCzeAz8l5.jpg
                        first_air_date: '2005-09-05'
                        genre_ids:
                          - 18
                          - 35
                        id: 36361
                        name: Ulice
                        origin_country:
                          - CZ
                        original_language: cs
                        original_name: Ulice
                        overview: >-
                          Ulice is a Czech soap opera produced and broadcast by
                          Nova. In the Czech language Ulice means street.


                          The show describes the lives of the Farský, Jordán,
                          Boháč, Nikl, and Liška families and many other people
                          that live in Prague. Their daily battle against real
                          problems of living in a modern world like divorce,
                          love, betrayal and illness or disease. Ulice often
                          shows crime.
                        popularity: 2674.381
                        poster_path: /gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg
                        vote_average: 4.6
                        vote_count: 31
                      - adult: false
                        backdrop_path: /zk3UqXnnK7cpUv6LsD9DS8FtUxb.jpg
                        first_air_date: '2024-09-02'
                        genre_ids:
                          - 18
                          - 10759
                        id: 256121
                        name: Lavender Fields
                        origin_country:
                          - PH
                        original_language: tl
                        original_name: Lavender Fields
                        overview: >-
                          The life of a simple flower farm girl is shattered
                          when she falls for a charming accountant, who turns
                          out to be a married gun cartel member. Targeted for
                          his stolen money, she loses everything she holds dear
                          and reinvents herself to seek justice.
                        popularity: 2662.671
                        poster_path: /7o9eY4qolqVn7SDLZzpJ89t7QYE.jpg
                        vote_average: 7.2
                        vote_count: 6
                      - adult: false
                        backdrop_path: /j5CR0gFPjwgmAXkV9HGaF4VMjIW.jpg
                        first_air_date: '2024-09-30'
                        genre_ids:
                          - 10766
                          - 18
                          - 35
                        id: 257064
                        name: Volta por Cima
                        origin_country:
                          - BR
                        original_language: pt
                        original_name: Volta por Cima
                        overview: ''
                        popularity: 2595.587
                        poster_path: /nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg
                        vote_average: 6.7
                        vote_count: 10
                      - adult: false
                        backdrop_path: /tPLUHT2cQYJi66aSZZ1qrcu74Zq.jpg
                        first_air_date: '2024-11-04'
                        genre_ids:
                          - 10766
                          - 18
                        id: 257048
                        name: Garota do Momento
                        origin_country:
                          - BR
                        original_language: pt
                        original_name: Garota do Momento
                        overview: ''
                        popularity: 2572.706
                        poster_path: /jFSkjQSZ5Td52igalpoTQRuHtk.jpg
                        vote_average: 8.111
                        vote_count: 9
                      - adult: false
                        backdrop_path: /sztoil0XfQ0cSHy4PXmYW6uAdfQ.jpg
                        first_air_date: '2013-03-22'
                        genre_ids:
                          - 10764
                        id: 65282
                        name: Home Alone
                        origin_country:
                          - KR
                          - US
                        original_language: ko
                        original_name: 나 혼자 산다
                        overview: >-
                          It can be a badge of honor to be “single.” “I Live
                          Alone” is a documentary-style South Korean reality
                          series that follows the members of a self-formed club
                          called Rainbow, which is comprised of  celebrities who
                          are single and live alone.
                        popularity: 2543.364
                        poster_path: /1hqGagr94soBq70Lq7tPHvNmmxy.jpg
                        vote_average: 6.8
                        vote_count: 16
                      - adult: false
                        backdrop_path: /1xlpfYGGFXOlYqQSUlFKEv4hqbt.jpg
                        first_air_date: '2002-10-21'
                        genre_ids:
                          - 10759
                          - 16
                          - 10765
                          - 10762
                        id: 46392
                        name: Duel Masters
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: デュエル・マスターズ
                        overview: >-
                          A mysterious organization is interested in fledging
                          duelist Shobu Kirifuda's ability to bring Duel Master
                          creatures to life. With the support of his friends,
                          Shobu duels with passion, discipline, and heart as he
                          strives to be like his father and become the next
                          Kaijudo master.
                        popularity: 2515.894
                        poster_path: /t5ijeKzOukACRktUfbjuMIlqwfr.jpg
                        vote_average: 5.9
                        vote_count: 14
                      - adult: false
                        backdrop_path: /i8iqYtAy9qcO5RSrA1f6fY1n6SN.jpg
                        first_air_date: '2015-11-16'
                        genre_ids:
                          - 10766
                        id: 235484
                        name: Suidooster
                        origin_country:
                          - ZA
                        original_language: af
                        original_name: Suidooster
                        overview: >-
                          Suidooster is a South African television soap opera
                          produced by Suidooster Films which revolves around a
                          matriarch, her family, friends and the people of
                          Suidooster, a small shopping and business centre in
                          the fictional Cape Town suburb of Ruiterbosch.
                        popularity: 2495.99
                        poster_path: /naCgSiacvV685kait6fBvhVhdce.jpg
                        vote_average: 7.7
                        vote_count: 20
                      - adult: false
                        backdrop_path: /5JbWk5f3zSbwkQjbCazWi1adDMl.jpg
                        first_air_date: '2024-12-28'
                        genre_ids:
                          - 18
                          - 10759
                          - 35
                        id: 233912
                        name: Guardians of the Dafeng
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 大奉打更人
                        overview: >-
                          Xu Qi’an, a recent police academy graduate, awakens in
                          a strange world filled with Confucians, Taoists,
                          Buddhists, demons, and warlocks. Facing imminent exile
                          to a remote frontier town, he seizes the chance to
                          change his fate by joining a powerful organization of
                          guardians.
                        popularity: 2384.688
                        poster_path: /zhIvZOCzwjJdn1Xu2KWikC7Luiq.jpg
                        vote_average: 7
                        vote_count: 7
                      - adult: false
                        backdrop_path: /9zIqN0oMmaeFvBlccgw80sWed7I.jpg
                        first_air_date: '2007-09-10'
                        genre_ids:
                          - 10763
                          - 35
                        id: 13008
                        name: TMZ
                        origin_country:
                          - US
                        original_language: en
                        original_name: TMZ
                        overview: >-
                          Based on the popular gossip website, this
                          entertainment newsmagazine delivers daily updates on
                          Hollywood's rich, beautiful and screwed-up. The
                          program often shows highlights of the day's staff
                          meeting during which reporters pitch ideas for stories
                          to air that day.
                        popularity: 2336.83
                        poster_path: /ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg
                        vote_average: 4.813
                        vote_count: 16
                      - adult: false
                        backdrop_path: /mP0LywGWY77Qa9rmfWZPJDEGaY2.jpg
                        first_air_date: '2018-10-01'
                        genre_ids:
                          - 18
                          - 10751
                          - 35
                          - 10759
                          - 10766
                        id: 86310
                        name: RadhaKrishn
                        origin_country:
                          - IN
                        original_language: hi
                        original_name: राधाकृष्ण
                        overview: >-
                          The story of Radha and Krishna is the epitome of
                          eternal love, which transcends eras and emotions.
                        popularity: 2301.03
                        poster_path: /3SiMmfY0663JmjpAfftmj1h6XGP.jpg
                        vote_average: 9
                        vote_count: 4
                      - adult: false
                        backdrop_path: /s41aHDgGza66JSwEc0poXSuBrmx.jpg
                        first_air_date: '2024-11-18'
                        genre_ids:
                          - 18
                        id: 261121
                        name: Desperate Mrs. Seonju
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 친절한 선주씨
                        overview: >-
                          Pi Seon Ju works as an interior designer in a small
                          neighborhood. She is married to Jeon Nam Jin, who is
                          an ambitious architect. Although Pi Seon Ju is devoted
                          to her husband, her husband falls in love with Jin
                          Sang A, who will become the successor of an
                          architecture company. To further pursue his love and
                          ambitions, Jeon Nam Jin demands a divorce from Pi Seon
                          Ju. After their divorce, Pi Seon Ju decides to start
                          her new life.


                          Meanwhile, architect Kim So U is married to Jin Sang
                          A. Unlike Jin Sang A, he is satisfied with a stable
                          situation rather than being fueled with ambition. Due
                          to his wife's affair with Jeon Nam Jin, Kim So U gets
                          divorced. After meeting Pi Seon Ju, Kim So U
                          experiences a turning point in his life.
                        popularity: 2296.897
                        poster_path: /wALnisqW9vGGJWH1GYUeCCWTcYd.jpg
                        vote_average: 6.3
                        vote_count: 3
                      - adult: false
                        backdrop_path: /kkfqNkGQR5og5sDjJTxTVmI9PW.jpg
                        first_air_date: '2017-07-17'
                        genre_ids:
                          - 80
                          - 18
                        id: 72879
                        name: Tomorrow Is Ours
                        origin_country:
                          - FR
                        original_language: fr
                        original_name: Demain nous appartient
                        overview: >-
                          The story revolves around the people of Sète, France.
                          Their lives are punctuated by family rivalries,
                          romance and scenes from daily life, but also by plots
                          involving police investigations, secrets and
                          betrayals.
                        popularity: 2271.764
                        poster_path: /zMWldNZF0wS3L5XkDVFHxYhclcL.jpg
                        vote_average: 6.3
                        vote_count: 64
                      - adult: false
                        backdrop_path: /2Bkqjc9tNWo3KLr1aRYyJ7vMQtM.jpg
                        first_air_date: '2023-10-22'
                        genre_ids:
                          - 10764
                        id: 235493
                        name: De Bondgenoten
                        origin_country:
                          - NL
                        original_language: nl
                        original_name: De Bondgenoten
                        overview: ''
                        popularity: 2250.834
                        poster_path: /sFgeZT3H1Uz3X1OipPq3WONv0WO.jpg
                        vote_average: 7
                        vote_count: 21
                      - adult: false
                        backdrop_path: /m944gXwEJ8Hp7GyokMAKSSo0yK9.jpg
                        first_air_date: '2024-10-11'
                        genre_ids:
                          - 10766
                          - 18
                        id: 262969
                        name: Return to Las Sabinas
                        origin_country:
                          - ES
                        original_language: es
                        original_name: Regreso a Las Sabinas
                        overview: >-
                          Gracia and Paloma return to Las Sabinas to look after
                          their father, Emilio. Gracia reunites with her
                          childhood sweetheart, Miguel, who is now engaged to
                          Esther. Paloma takes over the family's land and
                          clashes with landowner Paca Utrera, who shares a
                          terrible secret with Emilio and has a nefarious plan
                          for the village. Young Óscar is found dead under
                          strange circumstances. Manuela must investigate the
                          murder with the help of Óscar's brother, Álex, who is
                          a priest.
                        popularity: 2247.301
                        poster_path: /xMMH3r8gJtWVe1841BtHGjDooUm.jpg
                        vote_average: 6.2
                        vote_count: 6
                      - adult: false
                        backdrop_path: /fRzSn59mtc4BV3cckdHntRKaufM.jpg
                        first_air_date: '2012-05-14'
                        genre_ids:
                          - 35
                          - 18
                          - 10751
                        id: 84791
                        name: Come Home Love
                        origin_country:
                          - HK
                        original_language: cn
                        original_name: 愛·回家
                        overview: >-
                          MA FU, a retired employee of the HK Correctional
                          Services Department, moved back to live with his son
                          after retirement. MA FU treats and disciplines
                          everyone in his family as if they were the offenders
                          he works with in his job. His youngest son MA CHONG
                          feels like he's in jail when he gets home, and his
                          father is even often involved with his job as a
                          paralegal. The father and son get into disputes daily
                          and his elder brother MA KEUNG and his wife LO LAI
                          SEUNG are often stuck in between and have to settle
                          the disputes. The couple also holds the heavy
                          responsibility of raising their kids. Three
                          generations in the MA family all live together and
                          encounter different situations, experiences and system
                          of values.
                        popularity: 2238.914
                        poster_path: /nQwKCmgbpjb3wIf816t4WNgxzcR.jpg
                        vote_average: 8
                        vote_count: 1
                      - adult: false
                        backdrop_path: /ueQ3OVzCjBS7dgOEgunELfPfRbC.jpg
                        first_air_date: '2024-10-07'
                        genre_ids:
                          - 10751
                          - 35
                          - 18
                        id: 262831
                        name: My Merry Marriage
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 결혼하자 맹꽁아!
                        overview: >-
                          A delightful family drama that asks the true meaning
                          of 'happiness' by showing various aspects of marriage
                          such as divorce, remarriage, and single life, and
                          brings about empathy and laughter from all
                          generations.


                          Maeng Gong Hee is a contract designer at Jayce
                          Fashion. Having inherited her strong mother's spirit
                          and her former detective father's athletic ability,
                          she is a rare wild woman these days who has the guts
                          to survive even if she were to be stranded on a
                          deserted island.


                          Gu Dan Soo is the grandson of Jayce Fashion Chairman
                          Hwang Ik Seon and born to a wealthy father and a poor
                          mother. Dan Soo, who was living as a free spirit in a
                          foreign country, comes to Korea according to his
                          grandmother's plan to make a successor to the chairman
                          out of him and he reunites with childhood friend Maeng
                          Gong Hee once again.
                        popularity: 2218.705
                        poster_path: /lp7uJ6tZ9k8m7kW75hIAOUafXr4.jpg
                        vote_average: 9.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /6wAu4kZiKov5WkavL7H2ZfwbGAo.jpg
                        first_air_date: '2024-09-09'
                        genre_ids:
                          - 10766
                          - 18
                          - 9648
                        id: 237478
                        name: Crazy About You
                        origin_country:
                          - BR
                        original_language: pt
                        original_name: Mania de Você
                        overview: >-
                          The story begins with the ambiguous relationship
                          between friends Viola and Luma, who seem predestined
                          to literally enter each other's lives. Born on the
                          same day, in very different situations, they meet
                          years later, united by coincidences that go beyond
                          their birthday. From humble origins, Viola moves with
                          her boyfriend Mavi to Angra dos Reis, where Luma lives
                          a luxurious life and dates Rudá, who ends up meeting
                          Viola by chance. Thus begins the duo's journey, which
                          goes from a passion for recipes to an obsession with
                          the same man, from the immediate connection to the
                          point of starting to live their friend’s reality, 10
                          years later. A journey divided between complicity and
                          rivalry, which includes them in a love quadrangle and
                          is impacted by a series of circumstances, twists and
                          surprises, such as the secret surrounding a murder.
                        popularity: 2175.391
                        poster_path: /cRMofv8YC4F1WnpF7cIqMpwSnwh.jpg
                        vote_average: 5.2
                        vote_count: 10
                      - adult: false
                        backdrop_path: /n85GMdNw2pDVtkgoTdpHNpM89Uh.jpg
                        first_air_date: '2011-12-18'
                        genre_ids:
                          - 18
                        id: 42316
                        name: Devon Ke Dev...Mahadev
                        origin_country:
                          - IO
                        original_language: hi
                        original_name: देवों के देव...महादेव
                        overview: >-
                          He is the supreme being and the destroyer of evil.
                          Witness lord Shiva's story, his avatars, and a union
                          that sha more.
                        popularity: 2121.831
                        poster_path: /oMzXcYsUVIt6pQEODc6FRe8IBug.jpg
                        vote_average: 9.1
                        vote_count: 7
                  total_pages:
                    type: number
                    example: 9468
                  total_results:
                    type: number
                    example: 189347
              examples:
                Popular:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /ukAmSyNdtWduHZfm27R2EOsguKt.jpg
                        first_air_date: '2021-09-17'
                        genre_ids:
                          - 10759
                          - 9648
                          - 18
                        id: 93405
                        name: Squid Game
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 오징어 게임
                        overview: >-
                          Hundreds of cash-strapped players accept a strange
                          invitation to compete in children's games. Inside, a
                          tempting prize awaits — with deadly high stakes.
                        popularity: 8435.793
                        poster_path: /1QdXdRYfktUSONkl1oD5gc6Be0s.jpg
                        vote_average: 7.842
                        vote_count: 14833
                      - adult: false
                        backdrop_path: /mu3lEhGovyhKHPJzb7HNYtZUCDT.jpg
                        first_air_date: '2005-10-13'
                        genre_ids:
                          - 10766
                        id: 206559
                        name: Binnelanders
                        origin_country:
                          - ZA
                        original_language: af
                        original_name: Binnelanders
                        overview: >-
                          A South African Afrikaans soap opera. It is set in and
                          around the fictional private hospital, Binneland
                          Kliniek, in Pretoria, and the storyline follows the
                          trials, trauma and tribulations of the staff and
                          patients of the hospital.
                        popularity: 4638.165
                        poster_path: /3bzECfllho8PphdYujLUIuhncJD.jpg
                        vote_average: 5.6
                        vote_count: 80
                      - adult: false
                        backdrop_path: /cchlQWYrnMPyl1EbjZWCzeAz8l5.jpg
                        first_air_date: '2005-09-05'
                        genre_ids:
                          - 18
                          - 35
                        id: 36361
                        name: Ulice
                        origin_country:
                          - CZ
                        original_language: cs
                        original_name: Ulice
                        overview: >-
                          Ulice is a Czech soap opera produced and broadcast by
                          Nova. In the Czech language Ulice means street.


                          The show describes the lives of the Farský, Jordán,
                          Boháč, Nikl, and Liška families and many other people
                          that live in Prague. Their daily battle against real
                          problems of living in a modern world like divorce,
                          love, betrayal and illness or disease. Ulice often
                          shows crime.
                        popularity: 2674.381
                        poster_path: /gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg
                        vote_average: 4.6
                        vote_count: 31
                      - adult: false
                        backdrop_path: /zk3UqXnnK7cpUv6LsD9DS8FtUxb.jpg
                        first_air_date: '2024-09-02'
                        genre_ids:
                          - 18
                          - 10759
                        id: 256121
                        name: Lavender Fields
                        origin_country:
                          - PH
                        original_language: tl
                        original_name: Lavender Fields
                        overview: >-
                          The life of a simple flower farm girl is shattered
                          when she falls for a charming accountant, who turns
                          out to be a married gun cartel member. Targeted for
                          his stolen money, she loses everything she holds dear
                          and reinvents herself to seek justice.
                        popularity: 2662.671
                        poster_path: /7o9eY4qolqVn7SDLZzpJ89t7QYE.jpg
                        vote_average: 7.2
                        vote_count: 6
                      - adult: false
                        backdrop_path: /j5CR0gFPjwgmAXkV9HGaF4VMjIW.jpg
                        first_air_date: '2024-09-30'
                        genre_ids:
                          - 10766
                          - 18
                          - 35
                        id: 257064
                        name: Volta por Cima
                        origin_country:
                          - BR
                        original_language: pt
                        original_name: Volta por Cima
                        overview: ''
                        popularity: 2595.587
                        poster_path: /nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg
                        vote_average: 6.7
                        vote_count: 10
                      - adult: false
                        backdrop_path: /tPLUHT2cQYJi66aSZZ1qrcu74Zq.jpg
                        first_air_date: '2024-11-04'
                        genre_ids:
                          - 10766
                          - 18
                        id: 257048
                        name: Garota do Momento
                        origin_country:
                          - BR
                        original_language: pt
                        original_name: Garota do Momento
                        overview: ''
                        popularity: 2572.706
                        poster_path: /jFSkjQSZ5Td52igalpoTQRuHtk.jpg
                        vote_average: 8.111
                        vote_count: 9
                      - adult: false
                        backdrop_path: /sztoil0XfQ0cSHy4PXmYW6uAdfQ.jpg
                        first_air_date: '2013-03-22'
                        genre_ids:
                          - 10764
                        id: 65282
                        name: Home Alone
                        origin_country:
                          - KR
                          - US
                        original_language: ko
                        original_name: 나 혼자 산다
                        overview: >-
                          It can be a badge of honor to be “single.” “I Live
                          Alone” is a documentary-style South Korean reality
                          series that follows the members of a self-formed club
                          called Rainbow, which is comprised of  celebrities who
                          are single and live alone.
                        popularity: 2543.364
                        poster_path: /1hqGagr94soBq70Lq7tPHvNmmxy.jpg
                        vote_average: 6.8
                        vote_count: 16
                      - adult: false
                        backdrop_path: /1xlpfYGGFXOlYqQSUlFKEv4hqbt.jpg
                        first_air_date: '2002-10-21'
                        genre_ids:
                          - 10759
                          - 16
                          - 10765
                          - 10762
                        id: 46392
                        name: Duel Masters
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: デュエル・マスターズ
                        overview: >-
                          A mysterious organization is interested in fledging
                          duelist Shobu Kirifuda's ability to bring Duel Master
                          creatures to life. With the support of his friends,
                          Shobu duels with passion, discipline, and heart as he
                          strives to be like his father and become the next
                          Kaijudo master.
                        popularity: 2515.894
                        poster_path: /t5ijeKzOukACRktUfbjuMIlqwfr.jpg
                        vote_average: 5.9
                        vote_count: 14
                      - adult: false
                        backdrop_path: /i8iqYtAy9qcO5RSrA1f6fY1n6SN.jpg
                        first_air_date: '2015-11-16'
                        genre_ids:
                          - 10766
                        id: 235484
                        name: Suidooster
                        origin_country:
                          - ZA
                        original_language: af
                        original_name: Suidooster
                        overview: >-
                          Suidooster is a South African television soap opera
                          produced by Suidooster Films which revolves around a
                          matriarch, her family, friends and the people of
                          Suidooster, a small shopping and business centre in
                          the fictional Cape Town suburb of Ruiterbosch.
                        popularity: 2495.99
                        poster_path: /naCgSiacvV685kait6fBvhVhdce.jpg
                        vote_average: 7.7
                        vote_count: 20
                      - adult: false
                        backdrop_path: /5JbWk5f3zSbwkQjbCazWi1adDMl.jpg
                        first_air_date: '2024-12-28'
                        genre_ids:
                          - 18
                          - 10759
                          - 35
                        id: 233912
                        name: Guardians of the Dafeng
                        origin_country:
                          - CN
                        original_language: zh
                        original_name: 大奉打更人
                        overview: >-
                          Xu Qi’an, a recent police academy graduate, awakens in
                          a strange world filled with Confucians, Taoists,
                          Buddhists, demons, and warlocks. Facing imminent exile
                          to a remote frontier town, he seizes the chance to
                          change his fate by joining a powerful organization of
                          guardians.
                        popularity: 2384.688
                        poster_path: /zhIvZOCzwjJdn1Xu2KWikC7Luiq.jpg
                        vote_average: 7
                        vote_count: 7
                      - adult: false
                        backdrop_path: /9zIqN0oMmaeFvBlccgw80sWed7I.jpg
                        first_air_date: '2007-09-10'
                        genre_ids:
                          - 10763
                          - 35
                        id: 13008
                        name: TMZ
                        origin_country:
                          - US
                        original_language: en
                        original_name: TMZ
                        overview: >-
                          Based on the popular gossip website, this
                          entertainment newsmagazine delivers daily updates on
                          Hollywood's rich, beautiful and screwed-up. The
                          program often shows highlights of the day's staff
                          meeting during which reporters pitch ideas for stories
                          to air that day.
                        popularity: 2336.83
                        poster_path: /ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg
                        vote_average: 4.813
                        vote_count: 16
                      - adult: false
                        backdrop_path: /mP0LywGWY77Qa9rmfWZPJDEGaY2.jpg
                        first_air_date: '2018-10-01'
                        genre_ids:
                          - 18
                          - 10751
                          - 35
                          - 10759
                          - 10766
                        id: 86310
                        name: RadhaKrishn
                        origin_country:
                          - IN
                        original_language: hi
                        original_name: राधाकृष्ण
                        overview: >-
                          The story of Radha and Krishna is the epitome of
                          eternal love, which transcends eras and emotions.
                        popularity: 2301.03
                        poster_path: /3SiMmfY0663JmjpAfftmj1h6XGP.jpg
                        vote_average: 9
                        vote_count: 4
                      - adult: false
                        backdrop_path: /s41aHDgGza66JSwEc0poXSuBrmx.jpg
                        first_air_date: '2024-11-18'
                        genre_ids:
                          - 18
                        id: 261121
                        name: Desperate Mrs. Seonju
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 친절한 선주씨
                        overview: >-
                          Pi Seon Ju works as an interior designer in a small
                          neighborhood. She is married to Jeon Nam Jin, who is
                          an ambitious architect. Although Pi Seon Ju is devoted
                          to her husband, her husband falls in love with Jin
                          Sang A, who will become the successor of an
                          architecture company. To further pursue his love and
                          ambitions, Jeon Nam Jin demands a divorce from Pi Seon
                          Ju. After their divorce, Pi Seon Ju decides to start
                          her new life.


                          Meanwhile, architect Kim So U is married to Jin Sang
                          A. Unlike Jin Sang A, he is satisfied with a stable
                          situation rather than being fueled with ambition. Due
                          to his wife's affair with Jeon Nam Jin, Kim So U gets
                          divorced. After meeting Pi Seon Ju, Kim So U
                          experiences a turning point in his life.
                        popularity: 2296.897
                        poster_path: /wALnisqW9vGGJWH1GYUeCCWTcYd.jpg
                        vote_average: 6.3
                        vote_count: 3
                      - adult: false
                        backdrop_path: /kkfqNkGQR5og5sDjJTxTVmI9PW.jpg
                        first_air_date: '2017-07-17'
                        genre_ids:
                          - 80
                          - 18
                        id: 72879
                        name: Tomorrow Is Ours
                        origin_country:
                          - FR
                        original_language: fr
                        original_name: Demain nous appartient
                        overview: >-
                          The story revolves around the people of Sète, France.
                          Their lives are punctuated by family rivalries,
                          romance and scenes from daily life, but also by plots
                          involving police investigations, secrets and
                          betrayals.
                        popularity: 2271.764
                        poster_path: /zMWldNZF0wS3L5XkDVFHxYhclcL.jpg
                        vote_average: 6.3
                        vote_count: 64
                      - adult: false
                        backdrop_path: /2Bkqjc9tNWo3KLr1aRYyJ7vMQtM.jpg
                        first_air_date: '2023-10-22'
                        genre_ids:
                          - 10764
                        id: 235493
                        name: De Bondgenoten
                        origin_country:
                          - NL
                        original_language: nl
                        original_name: De Bondgenoten
                        overview: ''
                        popularity: 2250.834
                        poster_path: /sFgeZT3H1Uz3X1OipPq3WONv0WO.jpg
                        vote_average: 7
                        vote_count: 21
                      - adult: false
                        backdrop_path: /m944gXwEJ8Hp7GyokMAKSSo0yK9.jpg
                        first_air_date: '2024-10-11'
                        genre_ids:
                          - 10766
                          - 18
                        id: 262969
                        name: Return to Las Sabinas
                        origin_country:
                          - ES
                        original_language: es
                        original_name: Regreso a Las Sabinas
                        overview: >-
                          Gracia and Paloma return to Las Sabinas to look after
                          their father, Emilio. Gracia reunites with her
                          childhood sweetheart, Miguel, who is now engaged to
                          Esther. Paloma takes over the family's land and
                          clashes with landowner Paca Utrera, who shares a
                          terrible secret with Emilio and has a nefarious plan
                          for the village. Young Óscar is found dead under
                          strange circumstances. Manuela must investigate the
                          murder with the help of Óscar's brother, Álex, who is
                          a priest.
                        popularity: 2247.301
                        poster_path: /xMMH3r8gJtWVe1841BtHGjDooUm.jpg
                        vote_average: 6.2
                        vote_count: 6
                      - adult: false
                        backdrop_path: /fRzSn59mtc4BV3cckdHntRKaufM.jpg
                        first_air_date: '2012-05-14'
                        genre_ids:
                          - 35
                          - 18
                          - 10751
                        id: 84791
                        name: Come Home Love
                        origin_country:
                          - HK
                        original_language: cn
                        original_name: 愛·回家
                        overview: >-
                          MA FU, a retired employee of the HK Correctional
                          Services Department, moved back to live with his son
                          after retirement. MA FU treats and disciplines
                          everyone in his family as if they were the offenders
                          he works with in his job. His youngest son MA CHONG
                          feels like he's in jail when he gets home, and his
                          father is even often involved with his job as a
                          paralegal. The father and son get into disputes daily
                          and his elder brother MA KEUNG and his wife LO LAI
                          SEUNG are often stuck in between and have to settle
                          the disputes. The couple also holds the heavy
                          responsibility of raising their kids. Three
                          generations in the MA family all live together and
                          encounter different situations, experiences and system
                          of values.
                        popularity: 2238.914
                        poster_path: /nQwKCmgbpjb3wIf816t4WNgxzcR.jpg
                        vote_average: 8
                        vote_count: 1
                      - adult: false
                        backdrop_path: /ueQ3OVzCjBS7dgOEgunELfPfRbC.jpg
                        first_air_date: '2024-10-07'
                        genre_ids:
                          - 10751
                          - 35
                          - 18
                        id: 262831
                        name: My Merry Marriage
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 결혼하자 맹꽁아!
                        overview: >-
                          A delightful family drama that asks the true meaning
                          of 'happiness' by showing various aspects of marriage
                          such as divorce, remarriage, and single life, and
                          brings about empathy and laughter from all
                          generations.


                          Maeng Gong Hee is a contract designer at Jayce
                          Fashion. Having inherited her strong mother's spirit
                          and her former detective father's athletic ability,
                          she is a rare wild woman these days who has the guts
                          to survive even if she were to be stranded on a
                          deserted island.


                          Gu Dan Soo is the grandson of Jayce Fashion Chairman
                          Hwang Ik Seon and born to a wealthy father and a poor
                          mother. Dan Soo, who was living as a free spirit in a
                          foreign country, comes to Korea according to his
                          grandmother's plan to make a successor to the chairman
                          out of him and he reunites with childhood friend Maeng
                          Gong Hee once again.
                        popularity: 2218.705
                        poster_path: /lp7uJ6tZ9k8m7kW75hIAOUafXr4.jpg
                        vote_average: 9.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /6wAu4kZiKov5WkavL7H2ZfwbGAo.jpg
                        first_air_date: '2024-09-09'
                        genre_ids:
                          - 10766
                          - 18
                          - 9648
                        id: 237478
                        name: Crazy About You
                        origin_country:
                          - BR
                        original_language: pt
                        original_name: Mania de Você
                        overview: >-
                          The story begins with the ambiguous relationship
                          between friends Viola and Luma, who seem predestined
                          to literally enter each other's lives. Born on the
                          same day, in very different situations, they meet
                          years later, united by coincidences that go beyond
                          their birthday. From humble origins, Viola moves with
                          her boyfriend Mavi to Angra dos Reis, where Luma lives
                          a luxurious life and dates Rudá, who ends up meeting
                          Viola by chance. Thus begins the duo's journey, which
                          goes from a passion for recipes to an obsession with
                          the same man, from the immediate connection to the
                          point of starting to live their friend’s reality, 10
                          years later. A journey divided between complicity and
                          rivalry, which includes them in a love quadrangle and
                          is impacted by a series of circumstances, twists and
                          surprises, such as the secret surrounding a murder.
                        popularity: 2175.391
                        poster_path: /cRMofv8YC4F1WnpF7cIqMpwSnwh.jpg
                        vote_average: 5.2
                        vote_count: 10
                      - adult: false
                        backdrop_path: /n85GMdNw2pDVtkgoTdpHNpM89Uh.jpg
                        first_air_date: '2011-12-18'
                        genre_ids:
                          - 18
                        id: 42316
                        name: Devon Ke Dev...Mahadev
                        origin_country:
                          - IO
                        original_language: hi
                        original_name: देवों के देव...महादेव
                        overview: >-
                          He is the supreme being and the destroyer of evil.
                          Witness lord Shiva's story, his avatars, and a union
                          that sha more.
                        popularity: 2121.831
                        poster_path: /oMzXcYsUVIt6pQEODc6FRe8IBug.jpg
                        vote_average: 9.1
                        vote_count: 7
                    total_pages: 9468
                    total_results: 189347

````