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

# Upcoming

> This endpoint get a list of movies that are being released soon.



## OpenAPI

````yaml api-reference/openapi3.json get /3/movie/upcoming
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/movie/upcoming:
    get:
      tags:
        - MOVIE LISTS
      summary: Upcoming
      description: This endpoint get a list of movies that are being released soon.
      operationId: upcoming
      parameters:
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/region'
      responses:
        '200':
          description: upcoming
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=23284
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 03 Jan 2025 22:08:37 GMT
            ETag:
              schema:
                type: string
                example: W/"1958c879ca1f50f080e44c5f2d58575a"
            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 08f45c153a856ff7955174d0e6f60744.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: eDh65JAeZUFV_fLNjvZ2m6WoMcaKlGRGoJpYj1g0Zf14eebY4hYtGQ==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '1031'
            x-memc-expires:
              schema:
                type: string
                example: '23284'
            x-memc-key:
              schema:
                type: string
                example: 9b6bcfd738b025ee8554b1b42f7d3a5d
          content:
            application/json:
              schema:
                type: object
                properties:
                  dates:
                    type: object
                    properties:
                      maximum:
                        type: string
                        example: '2025-01-29'
                        description: >-
                          The latest release date of the movies in the results,
                          formatted as "YYYY-MM-DD" (in this case,
                          "2025-01-08").
                      minimum:
                        type: string
                        example: '2025-01-08'
                        description: >-
                          The earliest release date of the movies in the
                          results, formatted as "YYYY-MM-DD" (in this case,
                          "2024-11-27").
                  page:
                    type: number
                    example: 1
                    description: The current page number of the results being displayed.
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                          description: >-
                            A boolean indicating whether the movie is intended
                            for an adult audience (true if it contains adult
                            content, false otherwise).
                        backdrop_path:
                          type: string
                          example: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                          description: >-
                            A string representing the path to the movie's
                            backdrop image.
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 28
                          example:
                            - 28
                            - 878
                            - 35
                            - 10751
                          description: >-
                            An array of integers corresponding to genres.(e.g.
                            28 for Action)
                        id:
                          type: number
                          example: 939243
                          description: A unique identifier for the movie in the database.
                        original_language:
                          type: string
                          example: en
                          description: >-
                            A string indicating the original language of the
                            movie.
                        original_title:
                          type: string
                          example: Sonic the Hedgehog 3
                          description: >-
                            The original title of the movie as it was released
                            initially.
                        overview:
                          type: string
                          example: >-
                            Sonic, Knuckles, and Tails reunite against a
                            powerful new adversary, Shadow, a mysterious villain
                            with powers unlike anything they have faced before.
                            With their abilities outmatched in every way, Team
                            Sonic must seek out an unlikely alliance in hopes of
                            stopping Shadow and protecting the planet.
                          description: A brief description of the movie's plot
                        popularity:
                          type: number
                          example: 3403.343
                          description: >-
                            A numeric value indicating the popularity of the
                            movie.
                        poster_path:
                          type: string
                          example: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                          description: >-
                            A string representing the path to the movie's poster
                            image
                        release_date:
                          type: string
                          example: '2024-12-19'
                          description: >-
                            The date when the movie is set to be released,
                            formatted as "YYYY-MM-DD".
                        title:
                          type: string
                          example: Sonic the Hedgehog 3
                          description: >-
                            The title of the movie as it will be known to the
                            public.
                        video:
                          type: boolean
                          example: false
                          description: >-
                            A boolean value indicating whether there is an
                            associated video (such as a trailer) available for
                            the movie. true means there is a video, whereas
                            false indicates there is none.
                        vote_average:
                          type: number
                          example: 7.62
                          description: >-
                            A numeric value representing the average rating of
                            the movie, typically on a scale from 1 to 10.
                        vote_count:
                          type: number
                          example: 291
                          description: >-
                            An integer indicating the total number of votes cast
                            for the movie, which contributes to the vote
                            average.
                    example:
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        original_language: en
                        original_title: Sonic the Hedgehog 3
                        overview: >-
                          Sonic, Knuckles, and Tails reunite against a powerful
                          new adversary, Shadow, a mysterious villain with
                          powers unlike anything they have faced before. With
                          their abilities outmatched in every way, Team Sonic
                          must seek out an unlikely alliance in hopes of
                          stopping Shadow and protecting the planet.
                        popularity: 3403.343
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.62
                        vote_count: 291
                      - adult: false
                        backdrop_path: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                        id: 1043905
                        original_language: en
                        original_title: Dirty Angels
                        overview: >-
                          During the United States' 2021 withdrawal from
                          Afghanistan, a group of female soldiers posing as
                          medical relief are sent back in to rescue a group of
                          kidnapped teenagers caught between ISIS and the
                          Taliban.
                        popularity: 1736.39
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.693
                        vote_count: 75
                      - adult: false
                        backdrop_path: /au3o84ub27qTZiMiEc9UYzN74V3.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 1035048
                        original_language: en
                        original_title: Elevation
                        overview: >-
                          A single father and two women venture from the safety
                          of their homes to face monstrous creatures to save the
                          life of a young boy.
                        popularity: 1633.009
                        poster_path: /y5CakxusfCElHau7oredncjtt3P.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.3
                        vote_count: 224
                      - adult: false
                        backdrop_path: /1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 878
                          - 10751
                        id: 1184918
                        original_language: en
                        original_title: The Wild Robot
                        overview: >-
                          After a shipwreck, an intelligent robot called Roz is
                          stranded on an uninhabited island. To survive the
                          harsh environment, Roz bonds with the island's animals
                          and cares for an orphaned baby goose.
                        popularity: 1043.986
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-12'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.374
                        vote_count: 3765
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 27
                          - 14
                          - 18
                        id: 426063
                        original_language: en
                        original_title: Nosferatu
                        overview: >-
                          A gothic tale of obsession between a haunted young
                          woman and the terrifying vampire infatuated with her,
                          causing untold horror in its wake.
                        popularity: 895.241
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.7
                        vote_count: 281
                      - adult: false
                        backdrop_path: /ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1138194
                        original_language: en
                        original_title: Heretic
                        overview: >-
                          Two young missionaries are forced to prove their faith
                          when they knock on the wrong door and are greeted by a
                          diabolical Mr. Reed, becoming ensnared in his deadly
                          game of cat-and-mouse.
                        popularity: 840.621
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.182
                        vote_count: 681
                      - adult: false
                        backdrop_path: /4cp40IyTpFfsT2IKpl0YlUkMBIR.jpg
                        genre_ids:
                          - 10749
                          - 35
                          - 18
                        id: 1064213
                        original_language: en
                        original_title: Anora
                        overview: >-
                          A young sex worker from Brooklyn gets her chance at a
                          Cinderella story when she meets and impulsively
                          marries the son of an oligarch. Once the news reaches
                          Russia, her fairytale is threatened as his parents set
                          out to get the marriage annulled.
                        popularity: 682.243
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.892
                        vote_count: 627
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 618.523
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-08-29'
                        title: Flow
                        video: false
                        vote_average: 8.456
                        vote_count: 499
                      - adult: false
                        backdrop_path: /9s9o9RT9Yj6nDuRJjnJm78WFoFl.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 53
                          - 878
                        id: 1051896
                        original_language: en
                        original_title: Arcadian
                        overview: >-
                          In the near future, on a decimated Earth, Paul and his
                          twin sons face terror at night when ferocious
                          creatures awaken. When Paul is nearly killed, the boys
                          come up with a plan for survival, using everything
                          their father taught them to keep him alive.
                        popularity: 558.456
                        poster_path: /spWV1eRzlDxvai8LbxwAWR0Vst4.jpg
                        release_date: '2024-04-12'
                        title: Arcadian
                        video: false
                        vote_average: 6.1
                        vote_count: 526
                      - adult: false
                        backdrop_path: /csQSGH0QU8D3Ov5YLEYuHep8ihA.jpg
                        genre_ids:
                          - 878
                          - 53
                          - 12
                          - 28
                        id: 1196470
                        original_language: fr
                        original_title: Survivre
                        overview: >-
                          A couple celebrates their son’s birthday in the middle
                          of the ocean on their boat. A violent storm hits and
                          it brings up hungry creatures from the depths and they
                          fight for their survival.
                        popularity: 526.598
                        poster_path: /59nsfU5hMG3puDZIGzZzJ1yW8FN.jpg
                        release_date: '2024-06-19'
                        title: Survive
                        video: false
                        vote_average: 5.787
                        vote_count: 87
                      - adult: false
                        backdrop_path: /uLqNGzJwnj8JKkKuRM2dHWJKCtc.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 53
                        id: 1029235
                        original_language: en
                        original_title: Azrael
                        overview: >-
                          In a world where no one speaks, a devout female hunts
                          down a young woman who has escaped her imprisonment.
                          Recaptured by its ruthless leaders, Azrael is due to
                          be sacrificed to pacify an ancient evil deep within
                          the surrounding wilderness.
                        popularity: 415.42
                        poster_path: /qpdFKDvJS7oLKTcBLXOaMwUESbs.jpg
                        release_date: '2024-09-27'
                        title: Azrael
                        video: false
                        vote_average: 6.018
                        vote_count: 163
                      - adult: false
                        backdrop_path: /zpaodBqO2lcwJh2SQrFFf1Rn8Jy.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1100099
                        original_language: en
                        original_title: We Live in Time
                        overview: >-
                          An up-and-coming chef and a recent divorcée find their
                          lives forever changed when a chance encounter brings
                          them together, in a decade-spanning, deeply moving
                          romance.
                        popularity: 395.862
                        poster_path: /ssFS25CiYQvRJqErqaEyHuVgyH7.jpg
                        release_date: '2024-10-10'
                        title: We Live in Time
                        video: false
                        vote_average: 7.604
                        vote_count: 326
                      - adult: false
                        backdrop_path: /a3PBAmXUXuazAzr83WNzRaBS33I.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 978796
                        original_language: en
                        original_title: Bagman
                        overview: >-
                          For centuries and across cultures, parents have warned
                          their children of the legendary Bagman, who snatches
                          innocent children and stuffs them into his vile,
                          rotting bag—never to be seen again. Patrick McKee
                          narrowly escaped such an encounter as a boy, which
                          left him with lasting scars throughout his adulthood.
                          Now, Patrick’s childhood tormentor has returned,
                          threatening the safety of his wife Karina and son
                          Jake.
                        popularity: 381.143
                        poster_path: /53IK9rlZJbwFYbNnJZiLq7UWxkT.jpg
                        release_date: '2024-09-20'
                        title: Bagman
                        video: false
                        vote_average: 6.173
                        vote_count: 139
                      - adult: false
                        backdrop_path: /llIXQAndg5kB6SWlp6ouUdO7Zxd.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 1084736
                        original_language: fr
                        original_title: Le Comte de Monte-Cristo
                        overview: >-
                          Edmond Dantes becomes the target of a sinister plot
                          and is arrested on his wedding day for a crime he did
                          not commit. After 14 years in the island prison of
                          Château d’If, he manages a daring escape. Now rich
                          beyond his dreams, he assumes the identity of the
                          Count of Monte-Cristo and exacts his revenge on the
                          three men who betrayed him.
                        popularity: 375.034
                        poster_path: /zw4kV7npGtaqvUxvJE9IdqdFsNc.jpg
                        release_date: '2024-06-28'
                        title: The Count of Monte Cristo
                        video: false
                        vote_average: 8.14
                        vote_count: 1118
                      - adult: false
                        backdrop_path: /hctfNoMpQGfn3VXdBYb9p0P5bT5.jpg
                        genre_ids:
                          - 18
                        id: 1097549
                        original_language: en
                        original_title: Babygirl
                        overview: >-
                          A high-powered CEO puts her career and family on the
                          line when she begins a torrid affair with her much
                          younger intern.
                        popularity: 313.593
                        poster_path: /A8HbTd0FemZyFCh5qvJFpHGiwF8.jpg
                        release_date: '2024-12-25'
                        title: Babygirl
                        video: false
                        vote_average: 5.5
                        vote_count: 26
                      - adult: false
                        backdrop_path: /9REO1DLpmwhrBJY3mYW5eVxkXFM.jpg
                        genre_ids:
                          - 12
                          - 18
                          - 878
                        id: 157336
                        original_language: en
                        original_title: Interstellar
                        overview: >-
                          The adventures of a group of explorers who make use of
                          a newly discovered wormhole to surpass the limitations
                          on human space travel and conquer the vast distances
                          involved in an interstellar voyage.
                        popularity: 252.756
                        poster_path: /gEU2QniE6E77NI6lCU6MxlNBvIx.jpg
                        release_date: '2014-11-05'
                        title: Interstellar
                        video: false
                        vote_average: 8.4
                        vote_count: 35974
                      - adult: false
                        backdrop_path: /66nlC5LDZmDUWONGkUZT2BrOszG.jpg
                        genre_ids:
                          - 53
                          - 18
                        id: 974576
                        original_language: en
                        original_title: Conclave
                        overview: >-
                          After the unexpected death of the Pope, Cardinal
                          Lawrence is tasked with managing the covert and
                          ancient ritual of electing a new one. Sequestered in
                          the Vatican with the Catholic Church’s most powerful
                          leaders until the process is complete, Lawrence finds
                          himself at the center of a conspiracy that could lead
                          to its downfall.
                        popularity: 251.12
                        poster_path: /m5x8D0bZ3eKqIVWZ5y7TnZ2oTVg.jpg
                        release_date: '2024-10-25'
                        title: Conclave
                        video: false
                        vote_average: 7.13
                        vote_count: 636
                      - adult: false
                        backdrop_path: /9Qq8InnodUYs8zdam8Zj967i6RO.jpg
                        genre_ids:
                          - 80
                          - 18
                        id: 1106739
                        original_language: en
                        original_title: 'Juror #2'
                        overview: >-
                          While serving as a juror in a high profile murder
                          trial, family man Justin Kemp finds himself struggling
                          with a serious moral dilemma…one he could use to sway
                          the jury verdict and potentially convict—or free—the
                          accused killer.
                        popularity: 228.23
                        poster_path: /utLESWj433xnIc1ss9TZjRI9SSl.jpg
                        release_date: '2024-10-30'
                        title: 'Juror #2'
                        video: false
                        vote_average: 7.032
                        vote_count: 980
                      - adult: false
                        backdrop_path: /hkJhGayONXn96CqIRM9GhWKnlCf.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 16
                          - 14
                        id: 1014505
                        original_language: ja
                        original_title: 劇場版「オーバーロード」聖王国編
                        overview: >-
                          After twelve years of playing his favorite MMORPG
                          game, Momonga logs in for the last time only to find
                          himself transported into its world playing it
                          indefinitely. Throughout his adventures, his avatar
                          ascends to the title of Sorcerer King Ains Ooal Gown.
                          Once prosperous but now on the brink of ruin, The
                          Sacred Kingdom enjoyed years of peace after
                          construction of an enormous wall protecting them from
                          neighboring invasions. But, one day this comes to an
                          end when the Demon Emperor Jaldabaoth arrives with an
                          army of villainous demi-humans. Fearing invasion of
                          their own lands, the neighboring territory of the
                          Slane Theocracy is forced to beg their enemies at the
                          Sorcerer Kingdom for help. Heeding the call, Momonga,
                          now known as the Sorcerer King Ains Ooal Gown, rallies
                          the Sorcerer Kingdom and its undead army to join the
                          fight alongside the Sacred Kingdom and the Slane
                          Theocracy in hopes to defeat the Demon Emperor.
                        popularity: 221.994
                        poster_path: /jEvytxNa5mfW7VAUmDWsZtIdATc.jpg
                        release_date: '2024-09-20'
                        title: 'OVERLORD: The Sacred Kingdom'
                        video: false
                        vote_average: 7.7
                        vote_count: 26
                      - adult: false
                        backdrop_path: /H39NvEXz23GE9iYQ4qqV4w1zWn.jpg
                        genre_ids:
                          - 35
                          - 27
                          - 14
                        id: 728949
                        original_language: en
                        original_title: Nightbitch
                        overview: >-
                          A woman, thrown into the stay-at-home routine of
                          raising a toddler in the suburbs, slowly embraces the
                          feral power deeply rooted in motherhood, as she
                          becomes increasingly aware of the bizarre and
                          undeniable signs that she may be turning into a dog.
                        popularity: 193.375
                        poster_path: /h49Pie8gM2jK0UHGFRjfPB3YTd.jpg
                        release_date: '2024-12-06'
                        title: Nightbitch
                        video: false
                        vote_average: 6.2
                        vote_count: 51
                    description: >-
                      An array of movie objects, each containing details about a
                      movie.
                  total_pages:
                    type: number
                    example: 43
                    description: The total number of pages available for the query results.
                  total_results:
                    type: number
                    example: 860
                    description: The total number of results found for the query.
              examples:
                upcoming:
                  value:
                    dates:
                      maximum: '2025-01-29'
                      minimum: '2025-01-08'
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /zOpe0eHsq0A2NvNyBbtT6sj53qV.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 35
                          - 10751
                        id: 939243
                        original_language: en
                        original_title: Sonic the Hedgehog 3
                        overview: >-
                          Sonic, Knuckles, and Tails reunite against a powerful
                          new adversary, Shadow, a mysterious villain with
                          powers unlike anything they have faced before. With
                          their abilities outmatched in every way, Team Sonic
                          must seek out an unlikely alliance in hopes of
                          stopping Shadow and protecting the planet.
                        popularity: 3403.343
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.62
                        vote_count: 291
                      - adult: false
                        backdrop_path: /dWkdmxIkH9y23s9v1PjQFhTGIwo.jpg
                        genre_ids:
                          - 28
                          - 18
                          - 53
                        id: 1043905
                        original_language: en
                        original_title: Dirty Angels
                        overview: >-
                          During the United States' 2021 withdrawal from
                          Afghanistan, a group of female soldiers posing as
                          medical relief are sent back in to rescue a group of
                          kidnapped teenagers caught between ISIS and the
                          Taliban.
                        popularity: 1736.39
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.693
                        vote_count: 75
                      - adult: false
                        backdrop_path: /au3o84ub27qTZiMiEc9UYzN74V3.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 1035048
                        original_language: en
                        original_title: Elevation
                        overview: >-
                          A single father and two women venture from the safety
                          of their homes to face monstrous creatures to save the
                          life of a young boy.
                        popularity: 1633.009
                        poster_path: /y5CakxusfCElHau7oredncjtt3P.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.3
                        vote_count: 224
                      - adult: false
                        backdrop_path: /1pmXyN3sKeYoUhu5VBZiDU4BX21.jpg
                        genre_ids:
                          - 16
                          - 28
                          - 878
                          - 10751
                        id: 1184918
                        original_language: en
                        original_title: The Wild Robot
                        overview: >-
                          After a shipwreck, an intelligent robot called Roz is
                          stranded on an uninhabited island. To survive the
                          harsh environment, Roz bonds with the island's animals
                          and cares for an orphaned baby goose.
                        popularity: 1043.986
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-12'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.374
                        vote_count: 3765
                      - adult: false
                        backdrop_path: /uWOJbarUXfVf6B4o0368dh138eR.jpg
                        genre_ids:
                          - 27
                          - 14
                          - 18
                        id: 426063
                        original_language: en
                        original_title: Nosferatu
                        overview: >-
                          A gothic tale of obsession between a haunted young
                          woman and the terrifying vampire infatuated with her,
                          causing untold horror in its wake.
                        popularity: 895.241
                        poster_path: /5qGIxdEO841C0tdY8vOdLoRVrr0.jpg
                        release_date: '2024-12-25'
                        title: Nosferatu
                        video: false
                        vote_average: 6.7
                        vote_count: 281
                      - adult: false
                        backdrop_path: /ag66gJCiZ06q1GSJuQlhGLi3Udx.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1138194
                        original_language: en
                        original_title: Heretic
                        overview: >-
                          Two young missionaries are forced to prove their faith
                          when they knock on the wrong door and are greeted by a
                          diabolical Mr. Reed, becoming ensnared in his deadly
                          game of cat-and-mouse.
                        popularity: 840.621
                        poster_path: /5HJqjCTcaE1TFwnNh3Dn21be2es.jpg
                        release_date: '2024-10-31'
                        title: Heretic
                        video: false
                        vote_average: 7.182
                        vote_count: 681
                      - adult: false
                        backdrop_path: /4cp40IyTpFfsT2IKpl0YlUkMBIR.jpg
                        genre_ids:
                          - 10749
                          - 35
                          - 18
                        id: 1064213
                        original_language: en
                        original_title: Anora
                        overview: >-
                          A young sex worker from Brooklyn gets her chance at a
                          Cinderella story when she meets and impulsively
                          marries the son of an oligarch. Once the news reaches
                          Russia, her fairytale is threatened as his parents set
                          out to get the marriage annulled.
                        popularity: 682.243
                        poster_path: /7MrgIUeq0DD2iF7GR6wqJfYZNeC.jpg
                        release_date: '2024-10-14'
                        title: Anora
                        video: false
                        vote_average: 6.892
                        vote_count: 627
                      - adult: false
                        backdrop_path: /b3mdmjYTEL70j7nuXATUAD9qgu4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 12
                        id: 823219
                        original_language: lv
                        original_title: Straume
                        overview: >-
                          A solitary cat, displaced by a great flood, finds
                          refuge on a boat with various species and must
                          navigate the challenges of adapting to a transformed
                          world together.
                        popularity: 618.523
                        poster_path: /imKSymKBK7o73sajciEmndJoVkR.jpg
                        release_date: '2024-08-29'
                        title: Flow
                        video: false
                        vote_average: 8.456
                        vote_count: 499
                      - adult: false
                        backdrop_path: /9s9o9RT9Yj6nDuRJjnJm78WFoFl.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 53
                          - 878
                        id: 1051896
                        original_language: en
                        original_title: Arcadian
                        overview: >-
                          In the near future, on a decimated Earth, Paul and his
                          twin sons face terror at night when ferocious
                          creatures awaken. When Paul is nearly killed, the boys
                          come up with a plan for survival, using everything
                          their father taught them to keep him alive.
                        popularity: 558.456
                        poster_path: /spWV1eRzlDxvai8LbxwAWR0Vst4.jpg
                        release_date: '2024-04-12'
                        title: Arcadian
                        video: false
                        vote_average: 6.1
                        vote_count: 526
                      - adult: false
                        backdrop_path: /csQSGH0QU8D3Ov5YLEYuHep8ihA.jpg
                        genre_ids:
                          - 878
                          - 53
                          - 12
                          - 28
                        id: 1196470
                        original_language: fr
                        original_title: Survivre
                        overview: >-
                          A couple celebrates their son’s birthday in the middle
                          of the ocean on their boat. A violent storm hits and
                          it brings up hungry creatures from the depths and they
                          fight for their survival.
                        popularity: 526.598
                        poster_path: /59nsfU5hMG3puDZIGzZzJ1yW8FN.jpg
                        release_date: '2024-06-19'
                        title: Survive
                        video: false
                        vote_average: 5.787
                        vote_count: 87
                      - adult: false
                        backdrop_path: /uLqNGzJwnj8JKkKuRM2dHWJKCtc.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 53
                        id: 1029235
                        original_language: en
                        original_title: Azrael
                        overview: >-
                          In a world where no one speaks, a devout female hunts
                          down a young woman who has escaped her imprisonment.
                          Recaptured by its ruthless leaders, Azrael is due to
                          be sacrificed to pacify an ancient evil deep within
                          the surrounding wilderness.
                        popularity: 415.42
                        poster_path: /qpdFKDvJS7oLKTcBLXOaMwUESbs.jpg
                        release_date: '2024-09-27'
                        title: Azrael
                        video: false
                        vote_average: 6.018
                        vote_count: 163
                      - adult: false
                        backdrop_path: /zpaodBqO2lcwJh2SQrFFf1Rn8Jy.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1100099
                        original_language: en
                        original_title: We Live in Time
                        overview: >-
                          An up-and-coming chef and a recent divorcée find their
                          lives forever changed when a chance encounter brings
                          them together, in a decade-spanning, deeply moving
                          romance.
                        popularity: 395.862
                        poster_path: /ssFS25CiYQvRJqErqaEyHuVgyH7.jpg
                        release_date: '2024-10-10'
                        title: We Live in Time
                        video: false
                        vote_average: 7.604
                        vote_count: 326
                      - adult: false
                        backdrop_path: /a3PBAmXUXuazAzr83WNzRaBS33I.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 978796
                        original_language: en
                        original_title: Bagman
                        overview: >-
                          For centuries and across cultures, parents have warned
                          their children of the legendary Bagman, who snatches
                          innocent children and stuffs them into his vile,
                          rotting bag—never to be seen again. Patrick McKee
                          narrowly escaped such an encounter as a boy, which
                          left him with lasting scars throughout his adulthood.
                          Now, Patrick’s childhood tormentor has returned,
                          threatening the safety of his wife Karina and son
                          Jake.
                        popularity: 381.143
                        poster_path: /53IK9rlZJbwFYbNnJZiLq7UWxkT.jpg
                        release_date: '2024-09-20'
                        title: Bagman
                        video: false
                        vote_average: 6.173
                        vote_count: 139
                      - adult: false
                        backdrop_path: /llIXQAndg5kB6SWlp6ouUdO7Zxd.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 1084736
                        original_language: fr
                        original_title: Le Comte de Monte-Cristo
                        overview: >-
                          Edmond Dantes becomes the target of a sinister plot
                          and is arrested on his wedding day for a crime he did
                          not commit. After 14 years in the island prison of
                          Château d’If, he manages a daring escape. Now rich
                          beyond his dreams, he assumes the identity of the
                          Count of Monte-Cristo and exacts his revenge on the
                          three men who betrayed him.
                        popularity: 375.034
                        poster_path: /zw4kV7npGtaqvUxvJE9IdqdFsNc.jpg
                        release_date: '2024-06-28'
                        title: The Count of Monte Cristo
                        video: false
                        vote_average: 8.14
                        vote_count: 1118
                      - adult: false
                        backdrop_path: /hctfNoMpQGfn3VXdBYb9p0P5bT5.jpg
                        genre_ids:
                          - 18
                        id: 1097549
                        original_language: en
                        original_title: Babygirl
                        overview: >-
                          A high-powered CEO puts her career and family on the
                          line when she begins a torrid affair with her much
                          younger intern.
                        popularity: 313.593
                        poster_path: /A8HbTd0FemZyFCh5qvJFpHGiwF8.jpg
                        release_date: '2024-12-25'
                        title: Babygirl
                        video: false
                        vote_average: 5.5
                        vote_count: 26
                      - adult: false
                        backdrop_path: /9REO1DLpmwhrBJY3mYW5eVxkXFM.jpg
                        genre_ids:
                          - 12
                          - 18
                          - 878
                        id: 157336
                        original_language: en
                        original_title: Interstellar
                        overview: >-
                          The adventures of a group of explorers who make use of
                          a newly discovered wormhole to surpass the limitations
                          on human space travel and conquer the vast distances
                          involved in an interstellar voyage.
                        popularity: 252.756
                        poster_path: /gEU2QniE6E77NI6lCU6MxlNBvIx.jpg
                        release_date: '2014-11-05'
                        title: Interstellar
                        video: false
                        vote_average: 8.4
                        vote_count: 35974
                      - adult: false
                        backdrop_path: /66nlC5LDZmDUWONGkUZT2BrOszG.jpg
                        genre_ids:
                          - 53
                          - 18
                        id: 974576
                        original_language: en
                        original_title: Conclave
                        overview: >-
                          After the unexpected death of the Pope, Cardinal
                          Lawrence is tasked with managing the covert and
                          ancient ritual of electing a new one. Sequestered in
                          the Vatican with the Catholic Church’s most powerful
                          leaders until the process is complete, Lawrence finds
                          himself at the center of a conspiracy that could lead
                          to its downfall.
                        popularity: 251.12
                        poster_path: /m5x8D0bZ3eKqIVWZ5y7TnZ2oTVg.jpg
                        release_date: '2024-10-25'
                        title: Conclave
                        video: false
                        vote_average: 7.13
                        vote_count: 636
                      - adult: false
                        backdrop_path: /9Qq8InnodUYs8zdam8Zj967i6RO.jpg
                        genre_ids:
                          - 80
                          - 18
                        id: 1106739
                        original_language: en
                        original_title: 'Juror #2'
                        overview: >-
                          While serving as a juror in a high profile murder
                          trial, family man Justin Kemp finds himself struggling
                          with a serious moral dilemma…one he could use to sway
                          the jury verdict and potentially convict—or free—the
                          accused killer.
                        popularity: 228.23
                        poster_path: /utLESWj433xnIc1ss9TZjRI9SSl.jpg
                        release_date: '2024-10-30'
                        title: 'Juror #2'
                        video: false
                        vote_average: 7.032
                        vote_count: 980
                      - adult: false
                        backdrop_path: /hkJhGayONXn96CqIRM9GhWKnlCf.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 16
                          - 14
                        id: 1014505
                        original_language: ja
                        original_title: 劇場版「オーバーロード」聖王国編
                        overview: >-
                          After twelve years of playing his favorite MMORPG
                          game, Momonga logs in for the last time only to find
                          himself transported into its world playing it
                          indefinitely. Throughout his adventures, his avatar
                          ascends to the title of Sorcerer King Ains Ooal Gown.
                          Once prosperous but now on the brink of ruin, The
                          Sacred Kingdom enjoyed years of peace after
                          construction of an enormous wall protecting them from
                          neighboring invasions. But, one day this comes to an
                          end when the Demon Emperor Jaldabaoth arrives with an
                          army of villainous demi-humans. Fearing invasion of
                          their own lands, the neighboring territory of the
                          Slane Theocracy is forced to beg their enemies at the
                          Sorcerer Kingdom for help. Heeding the call, Momonga,
                          now known as the Sorcerer King Ains Ooal Gown, rallies
                          the Sorcerer Kingdom and its undead army to join the
                          fight alongside the Sacred Kingdom and the Slane
                          Theocracy in hopes to defeat the Demon Emperor.
                        popularity: 221.994
                        poster_path: /jEvytxNa5mfW7VAUmDWsZtIdATc.jpg
                        release_date: '2024-09-20'
                        title: 'OVERLORD: The Sacred Kingdom'
                        video: false
                        vote_average: 7.7
                        vote_count: 26
                      - adult: false
                        backdrop_path: /H39NvEXz23GE9iYQ4qqV4w1zWn.jpg
                        genre_ids:
                          - 35
                          - 27
                          - 14
                        id: 728949
                        original_language: en
                        original_title: Nightbitch
                        overview: >-
                          A woman, thrown into the stay-at-home routine of
                          raising a toddler in the suburbs, slowly embraces the
                          feral power deeply rooted in motherhood, as she
                          becomes increasingly aware of the bizarre and
                          undeniable signs that she may be turning into a dog.
                        popularity: 193.375
                        poster_path: /h49Pie8gM2jK0UHGFRjfPB3YTd.jpg
                        release_date: '2024-12-06'
                        title: Nightbitch
                        video: false
                        vote_average: 6.2
                        vote_count: 51
                    total_pages: 43
                    total_results: 860
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    page:
      name: page
      in: query
      description: >-
        Indicates which page of results to return. Default is the first page
        (1).
      schema:
        type: integer
        example: 1
    region:
      name: region
      in: query
      description: >-
        This is the geographical area or country that can be used to filter
        results based on regional availability.
      schema:
        type: string
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````