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

# Movie

> This endpoint allows you to find movies with over 30 filters and sort options.

Check this [section](https://starlight.mintlify.app/api-reference/filter) for more information about how filter works. 



## OpenAPI

````yaml api-reference/openapi.yaml get /3/discover/movie
openapi: 3.0.3
info:
  title: The Movie Database API
  description: >-
    Welcome to the third version of The Movie Database (TMDB) API. Our API
    provides you with vast access to a range of movies, TV shows, actor
    information, and images.


    With the TMDB API, you can easily integrate any of these functionalities in
    your application.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
  - url: Collection
security:
  - bearerAuth: []
tags:
  - name: Validate Key
  - name: Authentication
  - name: Guest Sessions
  - name: Configuration
  - name: Account
  - name: Search
  - name: Discover
  - name: Find
  - name: Keyword
  - name: Lists
  - name: V3 vs V4
    description: >-
      There is version 4 (v4) for our list API. It contains several advanced
      improvements that differentiate it from the version 3 (v3) list. Although
      v3 lists will continue to work, you can only access these features if you
      switch to v4 lists.


      Some of the new improvements you can access on v4 lists include:


      - 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
      ](https://developer.themoviedb.org/v4/docs/getting-started) for more
      information.  
  - name: Collections
  - name: Companies
  - name: Networks
  - name: Trending
  - name: Movies
  - name: Movie Lists
  - name: TV Series
  - name: TV Series Lists
  - name: TV Seasons
  - name: TV Providers
  - name: TV Episode Groups
  - name: Watch Providers
  - name: People
  - name: People List
  - name: Genre
  - name: Changes
  - name: Credits
  - name: Certifications
paths:
  /3/discover/movie:
    get:
      tags:
        - Discover
      summary: Movie
      description: >-
        This endpoint allows you to find movies with over 30 filters and sort
        options.


        Check this
        [section](https://starlight.mintlify.app/api-reference/filter) for more
        information about how filter works. 
      operationId: movie
      parameters:
        - name: certification
          in: query
          schema:
            type: string
          description: This is used in conjunction with region.
        - name: certification.gte
          in: query
          schema:
            type: string
          description: This is used in conjunction with region
        - name: certification.lte
          in: query
          schema:
            type: string
          description: This is used in conjunction with region
        - name: certification_country
          in: query
          schema:
            type: string
          description: >-
            This is used in conjunction with the certification,
            `certification.gte` and `certification.lte` filters

            Data type: string
        - name: include_adult
          in: query
          schema:
            type: boolean
            example: 'false'
          description: 'This specifies if adult rated movie should be retrieved. '
        - name: include_video
          in: query
          schema:
            type: boolean
            example: 'false'
          description: 'This specifies if video should be included. '
        - name: language
          in: query
          schema:
            type: string
            example: en
          description: This represents the language.
        - name: page
          in: query
          schema:
            type: string
            example: '1'
          description: This represents the page number.
        - name: primary_release_year
          in: query
          schema:
            type: string
          description: |-
            This represents the primary release year.
            Data type: Integer
        - name: primary_release_date.gte
          in: query
          schema:
            type: string
          description: >-
            It retrieves the greater than or equal value  of the specified
            release date.

            Data type: date
        - name: primary_release_date.lte
          in: query
          schema:
            type: string
          description: >-
            It retrieves the lesser than or equal value  of the specified
            release date.

            Data type: date
        - name: region
          in: query
          schema:
            type: string
          description: This specifies the region.
        - name: |
            release_date.gte
          in: query
          schema:
            type: string
            example: '2024-12-26'
          description: >
            It retrieves the greater than or equal value  of the specified
            release date.

            Data value: Date
        - name: |
            release_date.lte
          in: query
          schema:
            type: string
            example: '7.343'
          description: >
            It retrieves the lesser than or equal value  of the specified
            release date.
        - name: sort_by
          in: query
          schema:
            type: string
            enum:
              - popularity.desc
              - popularity.asc
              - revenue.asc
              - revenue.desc
          description: This represents how the retrieved movie will be sorted.
        - name: |
            vote_average.gte
          in: query
          schema:
            type: string
          description: >
            It retrieves the average vote count. It retrieves the greater than
            or equal value  of the specified value.
        - name: |
            vote_average.lte
          in: query
          schema:
            type: string
          description: >
            It retrieves the average vote count. It retrieves the greater than
            or equal value  of the specified value.
        - name: |
            vote_count.gte
          in: query
          schema:
            type: string
          description: >
            It retrieves the vote count. It retrieves the greater than or equal
            value  of the specified value.
        - name: |
            vote_count.lte
          in: query
          schema:
            type: string
          description: >
            It retrieves the average vote count. It retrieves the greater than
            or equal value  of the specified value.
        - name: watch_region
          in: query
          schema:
            type: string
          description: >+
            This is used in conjunction with with `_watch_monetization_types` or
            with`_watch_providers`

        - name: |
            with_cast
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie cast. It can be a comma (AND) or pipe (OR)
            separated query
        - name: |
            with_companies
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie company. It can be a comma (AND) or pipe
            (OR) separated query
        - name: with_crew
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie crew. It can be a comma (AND) or pipe (OR)
            separated query
        - name: with_genres
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie genre. It can be a comma (AND) or pipe (OR)
            separated query
        - name: |
            with_keywords
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie genre. It can be a comma (AND) or pipe (OR)
            separated query
        - name: with_origin_country
          in: query
          schema:
            type: string
          description: >-
            This specifies the origin of the movie. It can be a comma (AND) or
            pipe (OR) separated query
        - name: |
            with_original_language
          in: query
          schema:
            type: string
            example: en
          description: >-
            This specifies the original language of the movie. It can be a comma
            (AND) or pipe (OR) separated query
        - name: with_release_type
          in: query
          schema:
            type: string
          description: >-
            This specifies the release type of the movie. It can be a comma
            (AND) or pipe (OR) separated query
        - name: with_runtime.gte
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie runtime. It retrieves the greater than or
            equal value  of the specified value.

            Data type: Integer
        - name: |
            with_runtime.lte
          in: query
          schema:
            type: string
          description: >-
            This specifies the movie runtime. It retrieves the lesserthan or
            equal value  of the specified value.

            Data type: Integer
        - name: |
            with_watch_monetization_types
          in: query
          schema:
            type: string
          description: >-
            This specifies the watch monetization type. Possible values are:
            [flatrate, free, ads, rent, buy]
        - name: |
            with_watch_providers
          in: query
          schema:
            type: string
          description: >-
            This specifies the watch providers type. use in conjunction with
            `watch_region`
        - name: |
            without_companies
          in: query
          schema:
            type: string
          description: This indicates that movie should be retrieved without companies.
        - name: |
            without_genres
          in: query
          schema:
            type: string
          description: This indicates that movie should be retrieved without genres.
        - name: without_keywords
          in: query
          schema:
            type: string
          description: This indicates that movie should be retrieved without keywords.
        - name: |
            without_watch_providers
          in: query
          schema:
            type: string
          description: >-
            This indicates that movie should be retrieved without watch
            providers.
        - name: year
          in: query
          schema:
            type: string
          description: This represents the movie year.
      responses:
        '200':
          description: Movie
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=14487
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 01 Jan 2025 21:30:57 GMT
            ETag:
              schema:
                type: string
                example: W/"988934149e355edb74adafd8bb9c12b2"
            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 7ba3a61255419c2e0d9e131796899e10.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: SsIEPI64JgcCNvJmjRvNoNDJT4w36Q5IluEEIDnU83kFUScv_lgzKg==
            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: '8452'
            x-memc-expires:
              schema:
                type: string
                example: '14487'
            x-memc-key:
              schema:
                type: string
                example: 7327e01103bb0de000af481ca2ea7993
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /6qld2YxAO9gdEblo0rsEb8BcYKO.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 10749
                          example:
                            - 10749
                            - 18
                        id:
                          type: number
                          example: 1156593
                        original_language:
                          type: string
                          example: es
                        original_title:
                          type: string
                          example: Culpa tuya
                        overview:
                          type: string
                          example: >-
                            The love between Noah and Nick seems unwavering
                            despite their parents' attempts to separate them.
                            But his job and her entry into college open up their
                            lives to new relationships that will shake the
                            foundations of both their relationship and the
                            Leister family itself.
                        popularity:
                          type: number
                          example: 5944.118
                        poster_path:
                          type: string
                          example: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date:
                          type: string
                          example: '2024-12-26'
                        title:
                          type: string
                          example: Your Fault
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.321
                        vote_count:
                          type: number
                          example: 462
                    example:
                      - adult: false
                        backdrop_path: /6qld2YxAO9gdEblo0rsEb8BcYKO.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1156593
                        original_language: es
                        original_title: Culpa tuya
                        overview: >-
                          The love between Noah and Nick seems unwavering
                          despite their parents' attempts to separate them. But
                          his job and her entry into college open up their lives
                          to new relationships that will shake the foundations
                          of both their relationship and the Leister family
                          itself.
                        popularity: 5944.118
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.321
                        vote_count: 462
                      - adult: false
                        backdrop_path: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 558449
                        original_language: en
                        original_title: Gladiator II
                        overview: >-
                          Years after witnessing the death of the revered hero
                          Maximus at the hands of his uncle, Lucius is forced to
                          enter the Colosseum after his home is conquered by the
                          tyrannical Emperors who now lead Rome with an iron
                          fist. With rage in his heart and the future of the
                          Empire at stake, Lucius must look to his past to find
                          strength and honor to return the glory of Rome to its
                          people.
                        popularity: 5324.153
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.77
                        vote_count: 1739
                      - adult: false
                        backdrop_path: /cjEcqdRdPQJhYre3HUAc5538Gk8.jpg
                        genre_ids:
                          - 28
                          - 14
                          - 35
                        id: 845781
                        original_language: en
                        original_title: Red One
                        overview: >-
                          After Santa Claus (codename: Red One) is kidnapped,
                          the North Pole's Head of Security must team up with
                          the world's most infamous tracker in a globe-trotting,
                          action-packed mission to save Christmas.
                        popularity: 3383.271
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7
                        vote_count: 1678
                      - 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: 3125.84
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.678
                        vote_count: 241
                      - adult: false
                        backdrop_path: /3V4kLQg0kSqPLctI5ziYWabAZYF.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                          - 53
                        id: 912649
                        original_language: en
                        original_title: 'Venom: The Last Dance'
                        overview: >-
                          Eddie and Venom are on the run. Hunted by both of
                          their worlds and with the net closing in, the duo are
                          forced into a devastating decision that will bring the
                          curtains down on Venom and Eddie's last dance.
                        popularity: 3080.957
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.8
                        vote_count: 2018
                      - adult: false
                        backdrop_path: /tElnmtQ6yz1PjN1kePNl8yMSb59.jpg
                        genre_ids:
                          - 16
                          - 12
                          - 10751
                          - 35
                        id: 1241982
                        original_language: en
                        original_title: Moana 2
                        overview: >-
                          After receiving an unexpected call from her wayfinding
                          ancestors, Moana journeys alongside Maui and a new
                          crew to the far seas of Oceania and into dangerous,
                          long-lost waters for an adventure unlike anything
                          she's ever faced.
                        popularity: 2488.074
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 7
                        vote_count: 688
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                          - 10402
                        id: 762509
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Told in flashbacks, Mufasa is an orphaned cub, lost
                          and alone until he meets a sympathetic lion named
                          Taka—the heir to a royal bloodline. The chance meeting
                          sets in motion a journey of misfits searching for
                          their destiny and working together to evade a
                          threatening and deadly foe.
                        popularity: 1969.871
                        poster_path: /9bXHaLlsFYpJUutg4E6WXAjaxDi.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.3
                        vote_count: 351
                      - adult: false
                        backdrop_path: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1010581
                        original_language: es
                        original_title: Culpa mía
                        overview: >-
                          Noah must leave her city, boyfriend, and friends to
                          move into William Leister's mansion, the flashy and
                          wealthy husband of her mother Rafaela. As a proud and
                          independent 17 year old, Noah resists living in a
                          mansion surrounded by luxury. However, it is there
                          where she meets Nick, her new stepbrother, and the
                          clash of their strong personalities becomes evident
                          from the very beginning.
                        popularity: 1637.697
                        poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                        release_date: '2023-06-08'
                        title: My Fault
                        video: false
                        vote_average: 7.9
                        vote_count: 3251
                      - adult: false
                        backdrop_path: /rhc8Mtuo3Kh8CndnlmTNMF8o9pU.jpg
                        genre_ids:
                          - 28
                          - 53
                        id: 1005331
                        original_language: en
                        original_title: Carry-On
                        overview: >-
                          An airport security officer races to outsmart a
                          mysterious traveler forcing him to let a dangerous
                          item slip onto a Christmas Eve flight.
                        popularity: 1515.586
                        poster_path: /sjMN7DRi4sGiledsmllEw5HJjPy.jpg
                        release_date: '2024-12-05'
                        title: Carry-On
                        video: false
                        vote_average: 7
                        vote_count: 1262
                      - 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: 1385.471
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.841
                        vote_count: 69
                      - 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: 1225.181
                        poster_path: /sLJqbUymYkLvoNt4E7DG2E4ia6y.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.3
                        vote_count: 211
                      - adult: false
                        backdrop_path: /uVlUu174iiKhsUGqnOSy46eIIMU.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        original_language: en
                        original_title: Wicked
                        overview: >-
                          In the land of Oz, ostracized and misunderstood
                          green-skinned Elphaba is forced to share a room with
                          the popular aristocrat Glinda at Shiz University, and
                          the two's unlikely friendship is tested as they begin
                          to fulfill their respective destinies as Glinda the
                          Good and the Wicked Witch of the West.
                        popularity: 1100.249
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.4
                        vote_count: 779
                      - adult: false
                        backdrop_path: /A6vAMO3myroRfBwSZetY4GVqaW4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 28
                          - 12
                        id: 839033
                        original_language: en
                        original_title: 'The Lord of the Rings: The War of the Rohirrim'
                        overview: >-
                          183 years before the events chronicled in the original
                          trilogy, a sudden attack by Wulf, a clever and
                          ruthless Dunlending lord seeking vengeance for the
                          death of his father, forces Helm Hammerhand and his
                          people to make a daring last stand in the ancient
                          stronghold of the Hornburg. Finding herself in an
                          increasingly desperate situation, Héra, the daughter
                          of Helm, must summon the will to lead the resistance
                          against a deadly enemy intent on their total
                          destruction.
                        popularity: 1056.755
                        poster_path: /hE9SAMyMSUGAPsHUGdyl6irv11v.jpg
                        release_date: '2024-12-05'
                        title: 'The Lord of the Rings: The War of the Rohirrim'
                        video: false
                        vote_average: 6.826
                        vote_count: 149
                      - adult: false
                        backdrop_path: /A28EE0vgHrB0OdoxWWMfgfyEoYn.jpg
                        genre_ids:
                          - 80
                          - 53
                          - 28
                        id: 1276945
                        original_language: nl
                        original_title: Ferry 2
                        overview: >-
                          After losing his drug empire, Ferry Bouman has found a
                          measure of peace away from Brabant's criminal
                          underworld — until his past catches up to him.
                        popularity: 1051.579
                        poster_path: /8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg
                        release_date: '2024-12-19'
                        title: Ferry 2
                        video: false
                        vote_average: 5.7
                        vote_count: 58
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 933260
                        original_language: en
                        original_title: The Substance
                        overview: >-
                          A fading celebrity decides to use a black market drug,
                          a cell-replicating substance that temporarily creates
                          a younger, better version of herself.
                        popularity: 1035.432
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 2881
                      - adult: false
                        backdrop_path: /6lE2e6j8qbtQR8aHxQNJlwxdmKV.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 974453
                        original_language: en
                        original_title: Absolution
                        overview: >-
                          An aging ex-boxer gangster working as muscle for a
                          Boston crime boss receives an upsetting diagnosis. 
                          Despite a faltering memory, he attempts to rectify the
                          sins of his past and reconnect with his estranged
                          children. He is determined to leave a positive legacy
                          for his grandson, but the criminal underworld isn’t
                          done with him and won’t loosen their grip willingly.
                        popularity: 952.272
                        poster_path: /2MeQG5Vq8rUnRAa463BZe5GNhVk.jpg
                        release_date: '2024-10-31'
                        title: Absolution
                        video: false
                        vote_average: 6
                        vote_count: 194
                      - 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: 909.544
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-08'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.4
                        vote_count: 3724
                      - adult: false
                        backdrop_path: /by8z9Fe8y7p4jo2YlW2SZDnptyT.jpg
                        genre_ids:
                          - 28
                          - 35
                          - 878
                        id: 533535
                        original_language: en
                        original_title: Deadpool & Wolverine
                        overview: >-
                          A listless Wade Wilson toils away in civilian life
                          with his days as the morally flexible mercenary,
                          Deadpool, behind him. But when his homeworld faces an
                          existential threat, Wade must reluctantly suit-up
                          again with an even more reluctant Wolverine.
                        popularity: 789.588
                        poster_path: /8cdWjvZQUExUUTzyp4t6EDMubfO.jpg
                        release_date: '2024-07-24'
                        title: Deadpool & Wolverine
                        video: false
                        vote_average: 7.658
                        vote_count: 6130
                      - adult: false
                        backdrop_path: /sQbFupSWM9wUdPj96NZNUOFSP5.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 1000075
                        original_language: fr
                        original_title: 'Largo Winch: Le prix de l''argent'
                        overview: >-
                          Largo Winch, devastated by the kidnapping of his son,
                          realizes that if he finds those responsible for his
                          bankruptcy, maybe he'll see his son again.
                        popularity: 728.653
                        poster_path: /myS41ZUmFvslkT8LeD2irAKxyrf.jpg
                        release_date: '2024-07-31'
                        title: 'The Price of Money: A Largo Winch Adventure'
                        video: false
                        vote_average: 5.8
                        vote_count: 67
                      - adult: false
                        backdrop_path: /xlkclSE4aq7r3JsFIJRgs21zUew.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1034541
                        original_language: en
                        original_title: Terrifier 3
                        overview: >-
                          Five years after surviving Art the Clown's Halloween
                          massacre, Sienna and Jonathan are still struggling to
                          rebuild their shattered lives. As the holiday season
                          approaches, they try to embrace the Christmas spirit
                          and leave the horrors of the past behind. But just
                          when they think they're safe, Art returns, determined
                          to turn their holiday cheer into a new nightmare. The
                          festive season quickly unravels as Art unleashes his
                          twisted brand of terror, proving that no holiday is
                          safe.
                        popularity: 691.532
                        poster_path: /ju10W5gl3PPK3b7TjEmVOZap51I.jpg
                        release_date: '2024-10-09'
                        title: Terrifier 3
                        video: false
                        vote_average: 6.9
                        vote_count: 1327
                  total_pages:
                    type: number
                    example: 47945
                  total_results:
                    type: number
                    example: 958885
              examples:
                Movie:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /6qld2YxAO9gdEblo0rsEb8BcYKO.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1156593
                        original_language: es
                        original_title: Culpa tuya
                        overview: >-
                          The love between Noah and Nick seems unwavering
                          despite their parents' attempts to separate them. But
                          his job and her entry into college open up their lives
                          to new relationships that will shake the foundations
                          of both their relationship and the Leister family
                          itself.
                        popularity: 5944.118
                        poster_path: /1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg
                        release_date: '2024-12-26'
                        title: Your Fault
                        video: false
                        vote_average: 7.321
                        vote_count: 462
                      - adult: false
                        backdrop_path: /euYIwmwkmz95mnXvufEmbL6ovhZ.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 18
                        id: 558449
                        original_language: en
                        original_title: Gladiator II
                        overview: >-
                          Years after witnessing the death of the revered hero
                          Maximus at the hands of his uncle, Lucius is forced to
                          enter the Colosseum after his home is conquered by the
                          tyrannical Emperors who now lead Rome with an iron
                          fist. With rage in his heart and the future of the
                          Empire at stake, Lucius must look to his past to find
                          strength and honor to return the glory of Rome to its
                          people.
                        popularity: 5324.153
                        poster_path: /2cxhvwyEwRlysAmRH4iodkvo0z5.jpg
                        release_date: '2024-11-05'
                        title: Gladiator II
                        video: false
                        vote_average: 6.77
                        vote_count: 1739
                      - adult: false
                        backdrop_path: /cjEcqdRdPQJhYre3HUAc5538Gk8.jpg
                        genre_ids:
                          - 28
                          - 14
                          - 35
                        id: 845781
                        original_language: en
                        original_title: Red One
                        overview: >-
                          After Santa Claus (codename: Red One) is kidnapped,
                          the North Pole's Head of Security must team up with
                          the world's most infamous tracker in a globe-trotting,
                          action-packed mission to save Christmas.
                        popularity: 3383.271
                        poster_path: /cdqLnri3NEGcmfnqwk2TSIYtddg.jpg
                        release_date: '2024-10-31'
                        title: Red One
                        video: false
                        vote_average: 7
                        vote_count: 1678
                      - 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: 3125.84
                        poster_path: /mubt4bnVfpJ5lBMq93DidEuMkJr.jpg
                        release_date: '2024-12-19'
                        title: Sonic the Hedgehog 3
                        video: false
                        vote_average: 7.678
                        vote_count: 241
                      - adult: false
                        backdrop_path: /3V4kLQg0kSqPLctI5ziYWabAZYF.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 12
                          - 53
                        id: 912649
                        original_language: en
                        original_title: 'Venom: The Last Dance'
                        overview: >-
                          Eddie and Venom are on the run. Hunted by both of
                          their worlds and with the net closing in, the duo are
                          forced into a devastating decision that will bring the
                          curtains down on Venom and Eddie's last dance.
                        popularity: 3080.957
                        poster_path: /aosm8NMQ3UyoBVpSxyimorCQykC.jpg
                        release_date: '2024-10-22'
                        title: 'Venom: The Last Dance'
                        video: false
                        vote_average: 6.8
                        vote_count: 2018
                      - adult: false
                        backdrop_path: /tElnmtQ6yz1PjN1kePNl8yMSb59.jpg
                        genre_ids:
                          - 16
                          - 12
                          - 10751
                          - 35
                        id: 1241982
                        original_language: en
                        original_title: Moana 2
                        overview: >-
                          After receiving an unexpected call from her wayfinding
                          ancestors, Moana journeys alongside Maui and a new
                          crew to the far seas of Oceania and into dangerous,
                          long-lost waters for an adventure unlike anything
                          she's ever faced.
                        popularity: 2488.074
                        poster_path: /m0SbwFNCa9epW1X60deLqTHiP7x.jpg
                        release_date: '2024-11-21'
                        title: Moana 2
                        video: false
                        vote_average: 7
                        vote_count: 688
                      - adult: false
                        backdrop_path: /oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg
                        genre_ids:
                          - 12
                          - 10751
                          - 16
                          - 10402
                        id: 762509
                        original_language: en
                        original_title: 'Mufasa: The Lion King'
                        overview: >-
                          Told in flashbacks, Mufasa is an orphaned cub, lost
                          and alone until he meets a sympathetic lion named
                          Taka—the heir to a royal bloodline. The chance meeting
                          sets in motion a journey of misfits searching for
                          their destiny and working together to evade a
                          threatening and deadly foe.
                        popularity: 1969.871
                        poster_path: /9bXHaLlsFYpJUutg4E6WXAjaxDi.jpg
                        release_date: '2024-12-18'
                        title: 'Mufasa: The Lion King'
                        video: false
                        vote_average: 7.3
                        vote_count: 351
                      - adult: false
                        backdrop_path: /lntyt4OVDbcxA1l7LtwITbrD3FI.jpg
                        genre_ids:
                          - 10749
                          - 18
                        id: 1010581
                        original_language: es
                        original_title: Culpa mía
                        overview: >-
                          Noah must leave her city, boyfriend, and friends to
                          move into William Leister's mansion, the flashy and
                          wealthy husband of her mother Rafaela. As a proud and
                          independent 17 year old, Noah resists living in a
                          mansion surrounded by luxury. However, it is there
                          where she meets Nick, her new stepbrother, and the
                          clash of their strong personalities becomes evident
                          from the very beginning.
                        popularity: 1637.697
                        poster_path: /w46Vw536HwNnEzOa7J24YH9DPRS.jpg
                        release_date: '2023-06-08'
                        title: My Fault
                        video: false
                        vote_average: 7.9
                        vote_count: 3251
                      - adult: false
                        backdrop_path: /rhc8Mtuo3Kh8CndnlmTNMF8o9pU.jpg
                        genre_ids:
                          - 28
                          - 53
                        id: 1005331
                        original_language: en
                        original_title: Carry-On
                        overview: >-
                          An airport security officer races to outsmart a
                          mysterious traveler forcing him to let a dangerous
                          item slip onto a Christmas Eve flight.
                        popularity: 1515.586
                        poster_path: /sjMN7DRi4sGiledsmllEw5HJjPy.jpg
                        release_date: '2024-12-05'
                        title: Carry-On
                        video: false
                        vote_average: 7
                        vote_count: 1262
                      - 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: 1385.471
                        poster_path: /3O3qSGmjRGc10hMwFul8WDxKE5t.jpg
                        release_date: '2024-12-11'
                        title: Dirty Angels
                        video: false
                        vote_average: 6.841
                        vote_count: 69
                      - 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: 1225.181
                        poster_path: /sLJqbUymYkLvoNt4E7DG2E4ia6y.jpg
                        release_date: '2024-11-07'
                        title: Elevation
                        video: false
                        vote_average: 6.3
                        vote_count: 211
                      - adult: false
                        backdrop_path: /uVlUu174iiKhsUGqnOSy46eIIMU.jpg
                        genre_ids:
                          - 18
                          - 10749
                          - 14
                        id: 402431
                        original_language: en
                        original_title: Wicked
                        overview: >-
                          In the land of Oz, ostracized and misunderstood
                          green-skinned Elphaba is forced to share a room with
                          the popular aristocrat Glinda at Shiz University, and
                          the two's unlikely friendship is tested as they begin
                          to fulfill their respective destinies as Glinda the
                          Good and the Wicked Witch of the West.
                        popularity: 1100.249
                        poster_path: /xDGbZ0JJ3mYaGKy4Nzd9Kph6M9L.jpg
                        release_date: '2024-11-20'
                        title: Wicked
                        video: false
                        vote_average: 7.4
                        vote_count: 779
                      - adult: false
                        backdrop_path: /A6vAMO3myroRfBwSZetY4GVqaW4.jpg
                        genre_ids:
                          - 16
                          - 14
                          - 28
                          - 12
                        id: 839033
                        original_language: en
                        original_title: 'The Lord of the Rings: The War of the Rohirrim'
                        overview: >-
                          183 years before the events chronicled in the original
                          trilogy, a sudden attack by Wulf, a clever and
                          ruthless Dunlending lord seeking vengeance for the
                          death of his father, forces Helm Hammerhand and his
                          people to make a daring last stand in the ancient
                          stronghold of the Hornburg. Finding herself in an
                          increasingly desperate situation, Héra, the daughter
                          of Helm, must summon the will to lead the resistance
                          against a deadly enemy intent on their total
                          destruction.
                        popularity: 1056.755
                        poster_path: /hE9SAMyMSUGAPsHUGdyl6irv11v.jpg
                        release_date: '2024-12-05'
                        title: 'The Lord of the Rings: The War of the Rohirrim'
                        video: false
                        vote_average: 6.826
                        vote_count: 149
                      - adult: false
                        backdrop_path: /A28EE0vgHrB0OdoxWWMfgfyEoYn.jpg
                        genre_ids:
                          - 80
                          - 53
                          - 28
                        id: 1276945
                        original_language: nl
                        original_title: Ferry 2
                        overview: >-
                          After losing his drug empire, Ferry Bouman has found a
                          measure of peace away from Brabant's criminal
                          underworld — until his past catches up to him.
                        popularity: 1051.579
                        poster_path: /8pwdnL3pEISIN1EGmwZzU6hpNVk.jpg
                        release_date: '2024-12-19'
                        title: Ferry 2
                        video: false
                        vote_average: 5.7
                        vote_count: 58
                      - adult: false
                        backdrop_path: /bFPqSvR2EmWQ9AlzWkC801XpoAZ.jpg
                        genre_ids:
                          - 27
                          - 878
                        id: 933260
                        original_language: en
                        original_title: The Substance
                        overview: >-
                          A fading celebrity decides to use a black market drug,
                          a cell-replicating substance that temporarily creates
                          a younger, better version of herself.
                        popularity: 1035.432
                        poster_path: /lqoMzCcZYEFK729d6qzt349fB4o.jpg
                        release_date: '2024-09-07'
                        title: The Substance
                        video: false
                        vote_average: 7.2
                        vote_count: 2881
                      - adult: false
                        backdrop_path: /6lE2e6j8qbtQR8aHxQNJlwxdmKV.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 974453
                        original_language: en
                        original_title: Absolution
                        overview: >-
                          An aging ex-boxer gangster working as muscle for a
                          Boston crime boss receives an upsetting diagnosis. 
                          Despite a faltering memory, he attempts to rectify the
                          sins of his past and reconnect with his estranged
                          children. He is determined to leave a positive legacy
                          for his grandson, but the criminal underworld isn’t
                          done with him and won’t loosen their grip willingly.
                        popularity: 952.272
                        poster_path: /2MeQG5Vq8rUnRAa463BZe5GNhVk.jpg
                        release_date: '2024-10-31'
                        title: Absolution
                        video: false
                        vote_average: 6
                        vote_count: 194
                      - 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: 909.544
                        poster_path: /9w0Vh9eizfBXrcomiaFWTIPdboo.jpg
                        release_date: '2024-09-08'
                        title: The Wild Robot
                        video: false
                        vote_average: 8.4
                        vote_count: 3724
                      - adult: false
                        backdrop_path: /by8z9Fe8y7p4jo2YlW2SZDnptyT.jpg
                        genre_ids:
                          - 28
                          - 35
                          - 878
                        id: 533535
                        original_language: en
                        original_title: Deadpool & Wolverine
                        overview: >-
                          A listless Wade Wilson toils away in civilian life
                          with his days as the morally flexible mercenary,
                          Deadpool, behind him. But when his homeworld faces an
                          existential threat, Wade must reluctantly suit-up
                          again with an even more reluctant Wolverine.
                        popularity: 789.588
                        poster_path: /8cdWjvZQUExUUTzyp4t6EDMubfO.jpg
                        release_date: '2024-07-24'
                        title: Deadpool & Wolverine
                        video: false
                        vote_average: 7.658
                        vote_count: 6130
                      - adult: false
                        backdrop_path: /sQbFupSWM9wUdPj96NZNUOFSP5.jpg
                        genre_ids:
                          - 28
                          - 12
                          - 53
                        id: 1000075
                        original_language: fr
                        original_title: 'Largo Winch: Le prix de l''argent'
                        overview: >-
                          Largo Winch, devastated by the kidnapping of his son,
                          realizes that if he finds those responsible for his
                          bankruptcy, maybe he'll see his son again.
                        popularity: 728.653
                        poster_path: /myS41ZUmFvslkT8LeD2irAKxyrf.jpg
                        release_date: '2024-07-31'
                        title: 'The Price of Money: A Largo Winch Adventure'
                        video: false
                        vote_average: 5.8
                        vote_count: 67
                      - adult: false
                        backdrop_path: /xlkclSE4aq7r3JsFIJRgs21zUew.jpg
                        genre_ids:
                          - 27
                          - 53
                        id: 1034541
                        original_language: en
                        original_title: Terrifier 3
                        overview: >-
                          Five years after surviving Art the Clown's Halloween
                          massacre, Sienna and Jonathan are still struggling to
                          rebuild their shattered lives. As the holiday season
                          approaches, they try to embrace the Christmas spirit
                          and leave the horrors of the past behind. But just
                          when they think they're safe, Art returns, determined
                          to turn their holiday cheer into a new nightmare. The
                          festive season quickly unravels as Art unleashes his
                          twisted brand of terror, proving that no holiday is
                          safe.
                        popularity: 691.532
                        poster_path: /ju10W5gl3PPK3b7TjEmVOZap51I.jpg
                        release_date: '2024-10-09'
                        title: Terrifier 3
                        video: false
                        vote_average: 6.9
                        vote_count: 1327
                    total_pages: 47945
                    total_results: 958885
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````