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

# TV

> Find TV shows using over 30 filters and sort options.

**Advanced Filtering**

If you specify the region parameter, the regional release date will be used instead of the primary release date. The date returned will be the first date based on your query (ie. if a `with_release_type` is specified). It's important to note the order of the release types that are used. Specifying `2|3` would return the limited theatrical release date as opposed to `3|2` which would return the theatrical date.

**`AND/OR` Logic**

Also note that a number of filters support being comma `(,)` or pipe `(|)` separated. Comma's are treated like an `AND` query while pipe's are treated like an `OR`. This allows for quite complex filtering depending on your desired results.



## OpenAPI

````yaml api-reference/openapi.json get /3/discover/tv
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/discover/tv:
    get:
      tags:
        - Discover
      summary: TV
      description: >-
        Find TV shows using over 30 filters and sort options.


        **Advanced Filtering**


        If you specify the region parameter, the regional release date will be
        used instead of the primary release date. The date returned will be the
        first date based on your query (ie. if a `with_release_type` is
        specified). It's important to note the order of the release types that
        are used. Specifying `2|3` would return the limited theatrical release
        date as opposed to `3|2` which would return the theatrical date.


        **`AND/OR` Logic**


        Also note that a number of filters support being comma `(,)` or pipe
        `(|)` separated. Comma's are treated like an `AND` query while pipe's
        are treated like an `OR`. This allows for quite complex filtering
        depending on your desired results.
      operationId: tv
      parameters:
        - name: include_adult
          in: query
          schema:
            type: string
            example: 'false'
        - name: include_null_first_air_dates
          in: query
          schema:
            type: string
            example: 'false'
        - name: language
          in: query
          schema:
            type: string
            example: en-US
        - name: page
          in: query
          schema:
            type: string
            example: '1'
        - name: sort_by
          in: query
          schema:
            type: string
            example: popularity.desc
        - name: api_key
          in: query
          schema:
            type: string
            example: 326dbe94f44f47329d53ee8b0c8a631b
        - name: query
          in: query
          schema:
            type: string
            example: Peaky Blinders
      responses:
        '200':
          description: TV
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=5850
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 01 Jan 2025 02:14:19 GMT
            ETag:
              schema:
                type: string
                example: W/"1a3827641694cdc6682253e04d77fe53"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 ef212a3d9b7a6edd15e1293f0bf1420e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: wUu4cGhW99B34MrXBMNvjvycEt5c94GhMHmXaLNj8hLTveSKiNClAg==
            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: '18953'
            x-memc-expires:
              schema:
                type: string
                example: '5850'
            x-memc-key:
              schema:
                type: string
                example: 5ef47425dfefc9a431bc55c3de013d67
          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: /mu3lEhGovyhKHPJzb7HNYtZUCDT.jpg
                        first_air_date:
                          type: string
                          example: '2005-10-13'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 10766
                          example:
                            - 10766
                        id:
                          type: number
                          example: 206559
                        name:
                          type: string
                          example: Binnelanders
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: ZA
                          example:
                            - ZA
                        original_language:
                          type: string
                          example: af
                        original_name:
                          type: string
                          example: Binnelanders
                        overview:
                          type: string
                          example: >-
                            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:
                          type: number
                          example: 4630.298
                        poster_path:
                          type: string
                          example: /3bzECfllho8PphdYujLUIuhncJD.jpg
                        vote_average:
                          type: number
                          example: 5.563
                        vote_count:
                          type: number
                          example: 79
                    example:
                      - 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: 4630.298
                        poster_path: /3bzECfllho8PphdYujLUIuhncJD.jpg
                        vote_average: 5.563
                        vote_count: 79
                      - adult: false
                        backdrop_path: /2meX1nMdScFOoV4370rqHWKmXhY.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: 4393.859
                        poster_path: /dDlEmu3EZ0Pgg93K2SVNLCjCSvE.jpg
                        vote_average: 7.8
                        vote_count: 14394
                      - adult: false
                        backdrop_path: /2wNuLc0cEoPz6PZItftrZLHjG2k.jpg
                        first_air_date: '2024-10-27'
                        genre_ids:
                          - 18
                          - 10751
                        id: 251691
                        name: Autumn of the Heart
                        origin_country:
                          - SA
                        original_language: ar
                        original_name: خريف القلب
                        overview: >-
                          A devastating car accident unearths a long-buried
                          secret that turns wealthy businessman Rashid and
                          hardworking Nahla's life around; fifteen years ago,
                          their daughters were switched at birth.
                        popularity: 2899.339
                        poster_path: /8uDmIxjBx90y5OCwJDBADtQzxb7.jpg
                        vote_average: 5
                        vote_count: 6
                      - adult: false
                        backdrop_path: /jWXrQstj7p3Wl5MfYWY6IHqRpDb.jpg
                        first_air_date: '1952-12-26'
                        genre_ids:
                          - 10763
                        id: 94722
                        name: Tagesschau
                        origin_country:
                          - DE
                        original_language: de
                        original_name: Tagesschau
                        overview: >-
                          German daily news program, the oldest still existing
                          program on German television.
                        popularity: 2731.741
                        poster_path: /7dFZJ2ZJJdcmkp05B9NWlqTJ5tq.jpg
                        vote_average: 6.8
                        vote_count: 237
                      - adult: false
                        backdrop_path: /vgeDRVpSUa4Hvovg4C6dgm4dfUW.jpg
                        first_air_date: '2020-11-02'
                        genre_ids:
                          - 10766
                          - 18
                        id: 112470
                        name: Ici tout commence
                        origin_country:
                          - FR
                        original_language: fr
                        original_name: Ici tout commence
                        overview: >-
                          This television drama series is centered around the
                          prestigious culinary school of renowned chef Auguste
                          Armand. The show follows the lives of students and
                          staff as they navigate the challenges and pressures of
                          the culinary world—delving into their personal and
                          professional lives, revealing secrets, rivalries, and
                          complex relationships.
                        popularity: 2578.895
                        poster_path: /v7nXPo2zdaIOfeIaERiOuTEt89N.jpg
                        vote_average: 6.8
                        vote_count: 86
                      - 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: 2474.144
                        poster_path: /jFSkjQSZ5Td52igalpoTQRuHtk.jpg
                        vote_average: 7.9
                        vote_count: 8
                      - 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: 2470.602
                        poster_path: /nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg
                        vote_average: 6.4
                        vote_count: 9
                      - adult: false
                        backdrop_path: /4i3iJepkqqH5JJgTNLJdi8ke6ir.jpg
                        first_air_date: '2024-05-06'
                        genre_ids:
                          - 10766
                        id: 249010
                        name: Kelders van Geheime
                        origin_country:
                          - ZA
                        original_language: af
                        original_name: Kelders van Geheime
                        overview: >-
                          Kelders van Geheime (Cellars of Secrets) is a South
                          African, Afrikaans-language telenovela based on the
                          wheeling's and dealings of the community that lives on
                          Soebatskloof (a wine farm in the Cape). The series
                          focuses on three families: the Abrahams, Syster and
                          Marais households. These families will have to stand
                          together, agree (or agree to disagree), and work
                          together to earn their bread and butter – and a glass
                          of wine.
                        popularity: 2355.625
                        poster_path: /vf1I0G5jICTstI1EXxb9Oqq80TU.jpg
                        vote_average: 5.9
                        vote_count: 13
                      - adult: false
                        backdrop_path: /mLcD1v4sfoa1juOsBat7Vik7wEe.jpg
                        first_air_date: '2024-03-18'
                        genre_ids:
                          - 10764
                        id: 248890
                        name: Ready Steady Cook South Africa
                        origin_country:
                          - ZA
                        original_language: en
                        original_name: Ready Steady Cook South Africa
                        overview: >-
                          In Ready Steady Cook, two teams - a Red Tomato and a
                          Green Pepper - compete in a Red Kitchen and a Green
                          Kitchen, together with a South African chef on each
                          side and paired with enthusiastic home cooks, as they
                          are challenged creatively with a mystery bag of
                          ingredients in a 20-minute cook-off.
                        popularity: 2326.549
                        poster_path: /30xX4IMbgnMbQwo76xM4BOSokZO.jpg
                        vote_average: 4.5
                        vote_count: 9
                      - 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: 2162.4
                        poster_path: /ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg
                        vote_average: 4.813
                        vote_count: 16
                      - adult: false
                        backdrop_path: /5w5Cn8c4PNmDA5o9rET2oc0nxwb.jpg
                        first_air_date: '2024-10-27'
                        genre_ids:
                          - 18
                        id: 260695
                        name: sensitive chord
                        origin_country:
                          - EG
                        original_language: ar
                        original_name: وتر حساس
                        overview: >-
                          In a social dramatic context, the events of the series
                          revolve around the issue of marital infidelity and the
                          secrets of the human soul through three women (a
                          doctor, a lawyer, and an employee in one of the
                          departments), where the pace of events escalates due
                          to the disputes between the lawyer and her husband, an
                          interior designer, especially after she accused him of
                          betrayal, with the intertwined relationships between
                          all parties.
                        popularity: 2149.219
                        poster_path: /hHoBvznjHhGqPKNkRnqb9zUq8s6.jpg
                        vote_average: 5.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: 2087.245
                        poster_path: /cRMofv8YC4F1WnpF7cIqMpwSnwh.jpg
                        vote_average: 5.4
                        vote_count: 8
                      - adult: false
                        backdrop_path: /rotcih1fY3UOYejNbiTmz36og12.jpg
                        first_air_date: '2024-01-22'
                        genre_ids:
                          - 18
                          - 10751
                        id: 242722
                        name: Shrimad Ramayan
                        origin_country:
                          - IN
                        original_language: hi
                        original_name: श्रीमद् रामायण
                        overview: >-
                          Shrimad Ramayan is an ambitious television series that
                          brings to life the timeless epic, the Ramayan, with a
                          deep commitment to authenticity, cultural reverence
                          and a contemporary sensibility.
                        popularity: 2021.164
                        poster_path: /aCDK83ykQYnQGFOTfiLjnoqXv1b.jpg
                        vote_average: 6.9
                        vote_count: 9
                      - adult: false
                        backdrop_path: /g1IkuyEgTYqeUASaCkWqG8KxVur.jpg
                        first_air_date: '2021-02-04'
                        genre_ids:
                          - 10763
                        id: 274717
                        name: MDR aktuell
                        origin_country:
                          - DE
                        original_language: de
                        original_name: MDR aktuell
                        overview: ''
                        popularity: 1894.522
                        poster_path: /u2on02K66lrXULRlJryBwm3BX1c.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /cD9PxbrdWYgL7MUpD9eOYuiSe2P.jpg
                        first_air_date: '1999-09-20'
                        genre_ids:
                          - 80
                          - 18
                          - 9648
                        id: 2734
                        name: 'Law & Order: Special Victims Unit'
                        origin_country:
                          - US
                        original_language: en
                        original_name: 'Law & Order: Special Victims Unit'
                        overview: >-
                          In the criminal justice system, sexually-based
                          offenses are considered especially heinous. In New
                          York City, the dedicated detectives who investigate
                          these vicious felonies are members of an elite squad
                          known as the Special Victims Unit. These are their
                          stories.
                        popularity: 1873.91
                        poster_path: /abWOCrIo7bbAORxcQyOFNJdnnmR.jpg
                        vote_average: 7.9
                        vote_count: 3845
                      - adult: false
                        backdrop_path: /vgDyFH6WfgHs1dpPhvC1vpLmOcJ.jpg
                        first_air_date: '2007-04-16'
                        genre_ids:
                          - 10763
                        id: 6883
                        name: BBC World News America
                        origin_country:
                          - US
                        original_language: en
                        original_name: BBC News America
                        overview: >-
                          BBC World News America is a current affairs news
                          programme produced by BBC News especially targeted
                          towards American audiences. It is presented by
                          rotating presenters Caitríona Perry and Sumi
                          Somaskanda.
                        popularity: 1851.637
                        poster_path: /ahbTgC581tpCGg5M9LMXPcl6nq5.jpg
                        vote_average: 5.2
                        vote_count: 5
                      - adult: false
                        backdrop_path: null
                        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: 1812.917
                        poster_path: /gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg
                        vote_average: 4.6
                        vote_count: 30
                      - 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: 1799.501
                        poster_path: /7o9eY4qolqVn7SDLZzpJ89t7QYE.jpg
                        vote_average: 8.2
                        vote_count: 5
                      - adult: false
                        backdrop_path: /3iKhfPVKYDeAmkDrEv1IoHb5INJ.jpg
                        first_air_date: '1961-07-30'
                        genre_ids:
                          - 99
                        id: 278181
                        name: Hessenschau
                        origin_country:
                          - DE
                        original_language: de
                        original_name: Hessenschau
                        overview: ''
                        popularity: 1760.819
                        poster_path: /7UZNF63NrEk8k6warEWgg3OLwGW.jpg
                        vote_average: 0
                        vote_count: 0
                      - 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: 1707.714
                        poster_path: /naCgSiacvV685kait6fBvhVhdce.jpg
                        vote_average: 7.7
                        vote_count: 20
                  total_pages:
                    type: number
                    example: 9434
                  total_results:
                    type: number
                    example: 188680
              examples:
                TV:
                  value:
                    page: 1
                    results:
                      - 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: 4630.298
                        poster_path: /3bzECfllho8PphdYujLUIuhncJD.jpg
                        vote_average: 5.563
                        vote_count: 79
                      - adult: false
                        backdrop_path: /2meX1nMdScFOoV4370rqHWKmXhY.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: 4393.859
                        poster_path: /dDlEmu3EZ0Pgg93K2SVNLCjCSvE.jpg
                        vote_average: 7.8
                        vote_count: 14394
                      - adult: false
                        backdrop_path: /2wNuLc0cEoPz6PZItftrZLHjG2k.jpg
                        first_air_date: '2024-10-27'
                        genre_ids:
                          - 18
                          - 10751
                        id: 251691
                        name: Autumn of the Heart
                        origin_country:
                          - SA
                        original_language: ar
                        original_name: خريف القلب
                        overview: >-
                          A devastating car accident unearths a long-buried
                          secret that turns wealthy businessman Rashid and
                          hardworking Nahla's life around; fifteen years ago,
                          their daughters were switched at birth.
                        popularity: 2899.339
                        poster_path: /8uDmIxjBx90y5OCwJDBADtQzxb7.jpg
                        vote_average: 5
                        vote_count: 6
                      - adult: false
                        backdrop_path: /jWXrQstj7p3Wl5MfYWY6IHqRpDb.jpg
                        first_air_date: '1952-12-26'
                        genre_ids:
                          - 10763
                        id: 94722
                        name: Tagesschau
                        origin_country:
                          - DE
                        original_language: de
                        original_name: Tagesschau
                        overview: >-
                          German daily news program, the oldest still existing
                          program on German television.
                        popularity: 2731.741
                        poster_path: /7dFZJ2ZJJdcmkp05B9NWlqTJ5tq.jpg
                        vote_average: 6.8
                        vote_count: 237
                      - adult: false
                        backdrop_path: /vgeDRVpSUa4Hvovg4C6dgm4dfUW.jpg
                        first_air_date: '2020-11-02'
                        genre_ids:
                          - 10766
                          - 18
                        id: 112470
                        name: Ici tout commence
                        origin_country:
                          - FR
                        original_language: fr
                        original_name: Ici tout commence
                        overview: >-
                          This television drama series is centered around the
                          prestigious culinary school of renowned chef Auguste
                          Armand. The show follows the lives of students and
                          staff as they navigate the challenges and pressures of
                          the culinary world—delving into their personal and
                          professional lives, revealing secrets, rivalries, and
                          complex relationships.
                        popularity: 2578.895
                        poster_path: /v7nXPo2zdaIOfeIaERiOuTEt89N.jpg
                        vote_average: 6.8
                        vote_count: 86
                      - 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: 2474.144
                        poster_path: /jFSkjQSZ5Td52igalpoTQRuHtk.jpg
                        vote_average: 7.9
                        vote_count: 8
                      - 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: 2470.602
                        poster_path: /nyN8R0P1Hqwq7ksJz4O2BIAUd4W.jpg
                        vote_average: 6.4
                        vote_count: 9
                      - adult: false
                        backdrop_path: /4i3iJepkqqH5JJgTNLJdi8ke6ir.jpg
                        first_air_date: '2024-05-06'
                        genre_ids:
                          - 10766
                        id: 249010
                        name: Kelders van Geheime
                        origin_country:
                          - ZA
                        original_language: af
                        original_name: Kelders van Geheime
                        overview: >-
                          Kelders van Geheime (Cellars of Secrets) is a South
                          African, Afrikaans-language telenovela based on the
                          wheeling's and dealings of the community that lives on
                          Soebatskloof (a wine farm in the Cape). The series
                          focuses on three families: the Abrahams, Syster and
                          Marais households. These families will have to stand
                          together, agree (or agree to disagree), and work
                          together to earn their bread and butter – and a glass
                          of wine.
                        popularity: 2355.625
                        poster_path: /vf1I0G5jICTstI1EXxb9Oqq80TU.jpg
                        vote_average: 5.9
                        vote_count: 13
                      - adult: false
                        backdrop_path: /mLcD1v4sfoa1juOsBat7Vik7wEe.jpg
                        first_air_date: '2024-03-18'
                        genre_ids:
                          - 10764
                        id: 248890
                        name: Ready Steady Cook South Africa
                        origin_country:
                          - ZA
                        original_language: en
                        original_name: Ready Steady Cook South Africa
                        overview: >-
                          In Ready Steady Cook, two teams - a Red Tomato and a
                          Green Pepper - compete in a Red Kitchen and a Green
                          Kitchen, together with a South African chef on each
                          side and paired with enthusiastic home cooks, as they
                          are challenged creatively with a mystery bag of
                          ingredients in a 20-minute cook-off.
                        popularity: 2326.549
                        poster_path: /30xX4IMbgnMbQwo76xM4BOSokZO.jpg
                        vote_average: 4.5
                        vote_count: 9
                      - 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: 2162.4
                        poster_path: /ifFpUG51DJaQxwnZ35VwoGRFGGv.jpg
                        vote_average: 4.813
                        vote_count: 16
                      - adult: false
                        backdrop_path: /5w5Cn8c4PNmDA5o9rET2oc0nxwb.jpg
                        first_air_date: '2024-10-27'
                        genre_ids:
                          - 18
                        id: 260695
                        name: sensitive chord
                        origin_country:
                          - EG
                        original_language: ar
                        original_name: وتر حساس
                        overview: >-
                          In a social dramatic context, the events of the series
                          revolve around the issue of marital infidelity and the
                          secrets of the human soul through three women (a
                          doctor, a lawyer, and an employee in one of the
                          departments), where the pace of events escalates due
                          to the disputes between the lawyer and her husband, an
                          interior designer, especially after she accused him of
                          betrayal, with the intertwined relationships between
                          all parties.
                        popularity: 2149.219
                        poster_path: /hHoBvznjHhGqPKNkRnqb9zUq8s6.jpg
                        vote_average: 5.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: 2087.245
                        poster_path: /cRMofv8YC4F1WnpF7cIqMpwSnwh.jpg
                        vote_average: 5.4
                        vote_count: 8
                      - adult: false
                        backdrop_path: /rotcih1fY3UOYejNbiTmz36og12.jpg
                        first_air_date: '2024-01-22'
                        genre_ids:
                          - 18
                          - 10751
                        id: 242722
                        name: Shrimad Ramayan
                        origin_country:
                          - IN
                        original_language: hi
                        original_name: श्रीमद् रामायण
                        overview: >-
                          Shrimad Ramayan is an ambitious television series that
                          brings to life the timeless epic, the Ramayan, with a
                          deep commitment to authenticity, cultural reverence
                          and a contemporary sensibility.
                        popularity: 2021.164
                        poster_path: /aCDK83ykQYnQGFOTfiLjnoqXv1b.jpg
                        vote_average: 6.9
                        vote_count: 9
                      - adult: false
                        backdrop_path: /g1IkuyEgTYqeUASaCkWqG8KxVur.jpg
                        first_air_date: '2021-02-04'
                        genre_ids:
                          - 10763
                        id: 274717
                        name: MDR aktuell
                        origin_country:
                          - DE
                        original_language: de
                        original_name: MDR aktuell
                        overview: ''
                        popularity: 1894.522
                        poster_path: /u2on02K66lrXULRlJryBwm3BX1c.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /cD9PxbrdWYgL7MUpD9eOYuiSe2P.jpg
                        first_air_date: '1999-09-20'
                        genre_ids:
                          - 80
                          - 18
                          - 9648
                        id: 2734
                        name: 'Law & Order: Special Victims Unit'
                        origin_country:
                          - US
                        original_language: en
                        original_name: 'Law & Order: Special Victims Unit'
                        overview: >-
                          In the criminal justice system, sexually-based
                          offenses are considered especially heinous. In New
                          York City, the dedicated detectives who investigate
                          these vicious felonies are members of an elite squad
                          known as the Special Victims Unit. These are their
                          stories.
                        popularity: 1873.91
                        poster_path: /abWOCrIo7bbAORxcQyOFNJdnnmR.jpg
                        vote_average: 7.9
                        vote_count: 3845
                      - adult: false
                        backdrop_path: /vgDyFH6WfgHs1dpPhvC1vpLmOcJ.jpg
                        first_air_date: '2007-04-16'
                        genre_ids:
                          - 10763
                        id: 6883
                        name: BBC World News America
                        origin_country:
                          - US
                        original_language: en
                        original_name: BBC News America
                        overview: >-
                          BBC World News America is a current affairs news
                          programme produced by BBC News especially targeted
                          towards American audiences. It is presented by
                          rotating presenters Caitríona Perry and Sumi
                          Somaskanda.
                        popularity: 1851.637
                        poster_path: /ahbTgC581tpCGg5M9LMXPcl6nq5.jpg
                        vote_average: 5.2
                        vote_count: 5
                      - adult: false
                        backdrop_path: null
                        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: 1812.917
                        poster_path: /gFEHva8Csx18hMGJJZ6gi4sFSKR.jpg
                        vote_average: 4.6
                        vote_count: 30
                      - 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: 1799.501
                        poster_path: /7o9eY4qolqVn7SDLZzpJ89t7QYE.jpg
                        vote_average: 8.2
                        vote_count: 5
                      - adult: false
                        backdrop_path: /3iKhfPVKYDeAmkDrEv1IoHb5INJ.jpg
                        first_air_date: '1961-07-30'
                        genre_ids:
                          - 99
                        id: 278181
                        name: Hessenschau
                        origin_country:
                          - DE
                        original_language: de
                        original_name: Hessenschau
                        overview: ''
                        popularity: 1760.819
                        poster_path: /7UZNF63NrEk8k6warEWgg3OLwGW.jpg
                        vote_average: 0
                        vote_count: 0
                      - 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: 1707.714
                        poster_path: /naCgSiacvV685kait6fBvhVhdce.jpg
                        vote_average: 7.7
                        vote_count: 20
                    total_pages: 9434
                    total_results: 188680

````