> ## 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 search for movies by their original, translated, and alternative names.



## OpenAPI

````yaml api-reference/openapi.yaml get /3/search/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/search/movie:
    get:
      tags:
        - Search
      summary: Movie
      description: >-
        This endpoint allows you to search for movies by their original,
        translated, and alternative names.
      operationId: movie1
      parameters:
        - name: query
          in: query
          schema:
            type: string
            example: Terminator
          description: This represents the name of the movie you want to look for.
        - name: page
          in: query
          schema:
            type: string
            example: '1'
          description: This represents the page number.
      responses:
        '200':
          description: Movie
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=13627
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sat, 28 Dec 2024 13:01:07 GMT
            ETag:
              schema:
                type: string
                example: W/"c28d4d3449ca0cf8e155165aa35ddb92"
            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 8d6071bd169bbf5fd46638140132b1d0.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: luf2x8uCHVwiMGhsD2IupqaAYrOkzkpQYX88y66aBFoc-I0-RHQJpw==
            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: '12297'
            x-memc-expires:
              schema:
                type: string
                example: '13627'
            x-memc-key:
              schema:
                type: string
                example: 1042922063efecf87588ea612792b2e6
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: number
                    example: 1
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /wh4ze6klUbeichAj603OKZwY1W5.jpg
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 28
                          example:
                            - 28
                            - 53
                            - 878
                        id:
                          type: number
                          example: 218
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: The Terminator
                        overview:
                          type: string
                          example: >-
                            In the post-apocalyptic future, reigning tyrannical
                            supercomputers teleport a cyborg assassin known as
                            the "Terminator" back to 1984 to kill Sarah Connor,
                            whose unborn son is destined to lead insurgents
                            against 21st century mechanical hegemony. Meanwhile,
                            the human-resistance movement dispatches a lone
                            warrior to safeguard Sarah. Can he stop the
                            virtually indestructible killing machine?
                        popularity:
                          type: number
                          example: 77.844
                        poster_path:
                          type: string
                          example: /hzXSE66v6KthZ8nPoLZmsi2G05j.jpg
                        release_date:
                          type: string
                          example: '1984-10-26'
                        title:
                          type: string
                          example: The Terminator
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.661
                        vote_count:
                          type: number
                          example: 13250
                    example:
                      - adult: false
                        backdrop_path: /wh4ze6klUbeichAj603OKZwY1W5.jpg
                        genre_ids:
                          - 28
                          - 53
                          - 878
                        id: 218
                        original_language: en
                        original_title: The Terminator
                        overview: >-
                          In the post-apocalyptic future, reigning tyrannical
                          supercomputers teleport a cyborg assassin known as the
                          "Terminator" back to 1984 to kill Sarah Connor, whose
                          unborn son is destined to lead insurgents against 21st
                          century mechanical hegemony. Meanwhile, the
                          human-resistance movement dispatches a lone warrior to
                          safeguard Sarah. Can he stop the virtually
                          indestructible killing machine?
                        popularity: 77.844
                        poster_path: /hzXSE66v6KthZ8nPoLZmsi2G05j.jpg
                        release_date: '1984-10-26'
                        title: The Terminator
                        video: false
                        vote_average: 7.661
                        vote_count: 13250
                      - adult: false
                        backdrop_path: /vINgGecnz95iDL6fjQMARDsocgG.jpg
                        genre_ids:
                          - 28
                          - 53
                          - 878
                        id: 280
                        original_language: en
                        original_title: 'Terminator 2: Judgment Day'
                        overview: >-
                          Set ten years after the events of the original, James
                          Cameron’s classic sci-fi action flick tells the story
                          of a second attempt to get rid of rebellion leader
                          John Connor, this time targeting the boy himself.
                          However, the rebellion has sent a reprogrammed
                          terminator to protect Connor.
                        popularity: 82.903
                        poster_path: /k1OuVCYxN8Nt6OE9VbzHXzfJsTy.jpg
                        release_date: '1991-07-03'
                        title: 'Terminator 2: Judgment Day'
                        video: false
                        vote_average: 8.117
                        vote_count: 12943
                      - adult: false
                        backdrop_path: /wvlIoof1FnKPLv9jAYanuP31V0C.jpg
                        genre_ids:
                          - 878
                          - 28
                          - 53
                          - 12
                        id: 87101
                        original_language: en
                        original_title: Terminator Genisys
                        overview: >-
                          The year is 2029. John Connor, leader of the
                          resistance continues the war against the machines. At
                          the Los Angeles offensive, John's fears of the unknown
                          future begin to emerge when TECOM spies reveal a new
                          plot by SkyNet that will attack him from both fronts;
                          past and future, and will ultimately change warfare
                          forever.
                        popularity: 74.782
                        poster_path: /oZRVDpNtmHk8M1VYy1aeOWUXgbC.jpg
                        release_date: '2015-06-23'
                        title: Terminator Genisys
                        video: false
                        vote_average: 5.9
                        vote_count: 8398
                      - adult: false
                        backdrop_path: /a6cDxdwaQIFjSkXf7uskg78ZyTq.jpg
                        genre_ids:
                          - 878
                          - 28
                          - 12
                        id: 290859
                        original_language: en
                        original_title: 'Terminator: Dark Fate'
                        overview: >-
                          Decades after Sarah Connor prevented Judgment Day, a
                          lethal new Terminator is sent to eliminate the future
                          leader of the resistance. In a fight to save mankind,
                          battle-hardened Sarah Connor teams up with an
                          unexpected ally and an enhanced super soldier to stop
                          the deadliest Terminator yet.
                        popularity: 61.327
                        poster_path: /vqzNJRH4YyquRiWxCCOH0aXggHI.jpg
                        release_date: '2019-10-23'
                        title: 'Terminator: Dark Fate'
                        video: false
                        vote_average: 6.429
                        vote_count: 5120
                      - adult: false
                        backdrop_path: /kbXMOnz2RhTSAbLtHX5hy5AXtwv.jpg
                        genre_ids:
                          - 28
                          - 53
                          - 878
                        id: 296
                        original_language: en
                        original_title: 'Terminator 3: Rise of the Machines'
                        overview: >-
                          It's been 10 years since John Connor saved Earth from
                          Judgment Day, and he's now living under the radar,
                          steering clear of using anything Skynet can trace.
                          That is, until he encounters T-X, a robotic assassin
                          ordered to finish what T-1000 started. Good thing
                          Connor's former nemesis, the Terminator, is back to
                          aid the now-adult Connor … just like he promised.
                        popularity: 55.544
                        poster_path: /vvevzdYIrk2636maNW4qeWmlPFG.jpg
                        release_date: '2003-07-02'
                        title: 'Terminator 3: Rise of the Machines'
                        video: false
                        vote_average: 6.165
                        vote_count: 6634
                      - adult: false
                        backdrop_path: /m9yHpYz4GcEtmHJW4rvQIrF891h.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 534
                        original_language: en
                        original_title: Terminator Salvation
                        overview: >-
                          All grown up in post-apocalyptic 2018, John Connor
                          must lead the resistance of humans against the
                          increasingly dominating militaristic robots. But when
                          Marcus Wright appears, his existence confuses the
                          mission as Connor tries to determine whether Wright
                          has come from the future or the past -- and whether
                          he's friend or foe.
                        popularity: 43.793
                        poster_path: /gw6JhlekZgtKUFlDTezq3j5JEPK.jpg
                        release_date: '2009-05-20'
                        title: Terminator Salvation
                        video: false
                        vote_average: 6.063
                        vote_count: 6462
                      - adult: false
                        backdrop_path: /oKV1jGBYeq7W3AVN9R2xUpgqE3n.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 45443
                        original_language: cn
                        original_title: 轟天皇家將
                        overview: >-
                          Two Hong Kong policewomen (Ida and Hon) take on a
                          Japanese boss who has returned from a seven-year exile
                          to retake his old turf.
                        popularity: 6.037
                        poster_path: /j1Sfvtkm0iSJ3i3tstvsIFMVyVV.jpg
                        release_date: '1992-10-10'
                        title: Angel Terminators
                        video: false
                        vote_average: 5
                        vote_count: 60
                      - adult: false
                        backdrop_path: /hBU2INkYLe3OBKZspT0TRd3nTxX.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 14
                          - 878
                        id: 61904
                        original_language: en
                        original_title: Pembalasan Ratu Pantai Selatan
                        overview: >-
                          The spirit of an ancient evil queen posesses the body
                          of a young anthropological student, who then goes on a
                          murderous rampage.
                        popularity: 6.624
                        poster_path: /lwOK1GHK8KRgiWhfBkEnQKPLgEi.jpg
                        release_date: '1989-06-10'
                        title: Lady Terminator
                        video: false
                        vote_average: 5.408
                        vote_count: 71
                      - adult: false
                        backdrop_path: /45fofvQm0YEAzpgrOuISqNoF66Y.jpg
                        genre_ids:
                          - 18
                          - 28
                        id: 162455
                        original_language: cn
                        original_title: 火種
                        overview: >-
                          Bullet, a female triad member, is recently released
                          from prison. Bullet hooks up with her old gang rather
                          quickly, although she is being closely watched by her
                          policeman father and his gritty female partner Big
                          Aunt . Bullet steals some jewels belonging to triad
                          gangster Chin Bo while helping her friend May, who has
                          been forced into prostitution. Chin Bo, also known as
                          Brother Mad, kidnaps May and another of Bullet's
                          friends to secure the return of his fortune, but the
                          exchange goes wrong and a furious gun battle erupts.
                        popularity: 9.811
                        poster_path: /gD8S9el4DLuDriRw3OjEgfOIMNp.jpg
                        release_date: '1992-11-07'
                        title: Angel Terminators 2
                        video: false
                        vote_average: 6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /eNO76RvyKyzrEY4nhhtzM8feBng.jpg
                        genre_ids:
                          - 35
                          - 878
                          - 28
                        id: 717823
                        original_language: ru
                        original_title: 'Terminator 5: Смерть Голливуда'
                        overview: >-
                          An unofficial sequel to Kefir-Profit's unofficial
                          Terminator sequel... This time featuring Superman,
                          Rambo, Neo from the Matrix, Harry Potter and the evil
                          Agent 007.
                        popularity: 2.059
                        poster_path: /7K84p0Tgo9wnR7ReBwnOoVfmXTk.jpg
                        release_date: '2004-01-01'
                        title: 'Terminator 5: The Death of Hollywood'
                        video: false
                        vote_average: 5.1
                        vote_count: 24
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 233341
                        original_language: en
                        original_title: Terminator the Second
                        overview: >-
                          Terminator the Second is the premiere production of
                          the Nashville performance collective, Husky Jackal
                          Theater. A product of nearly a year of research and
                          revision, the script tells the story of a boy and his
                          cyborg protector entirely in lines and phrases taken
                          from the plays of William Shakespeare. Each line and
                          phrase is taken from original folios, with only proper
                          nouns, pronouns and corresponding verb tenses subject
                          to change. In doing so, the authors were able to
                          accurately recreate the story of Terminator 2:
                          Judgement Day, while remaining true to the words of
                          Shakespeare in form, if less so in intent.
                        popularity: 1.968
                        poster_path: /7oONKOvf7mwtostNeWkhKUgj8EX.jpg
                        release_date: '2013-11-01'
                        title: Terminator the Second
                        video: false
                        vote_average: 5.3
                        vote_count: 23
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 35
                          - 27
                        id: 965618
                        original_language: fi
                        original_title: 'Video Cop: Terminator Commando'
                        overview: >-
                          Jake Crusher is a cop from the 80's who gets sucked
                          into a VCR where he becomes Video Cop.
                        popularity: 1.195
                        poster_path: /ge2YeTh5DpdxzS32u1eHPIGV36w.jpg
                        release_date: '2017-08-25'
                        title: Terminator Commando
                        video: false
                        vote_average: 4.9
                        vote_count: 15
                      - adult: false
                        backdrop_path: /puiwodUrPSDTkvlIRr2CdDM1isB.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 878
                        id: 26342
                        original_language: en
                        original_title: The Terminators
                        overview: >-
                          A small band of resistance fighters battle the cyborgs
                          that have taken control of the planet.
                        popularity: 9.823
                        poster_path: /7LV3sg3bJOGFD6J0gn7Wt1IL5SK.jpg
                        release_date: '2009-04-28'
                        title: The Terminators
                        video: false
                        vote_average: 4.2
                        vote_count: 72
                      - adult: false
                        backdrop_path: /mdmO1o8HhmOKCadFhDXj3TUNlZ.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 27
                        id: 66664
                        original_language: it
                        original_title: Terminator 2
                        overview: >-
                          In a polluted future Venice researchers work to
                          improve the situation. One day, unknown forces start
                          killing them. A team of soldiers and a couple of
                          civilians is sent to investigate. Soon, they encounter
                          strange murderous creatures.
                        popularity: 8.848
                        poster_path: /tztmdSyvfvQBVyzqyh6sKQeJP5g.jpg
                        release_date: '1989-03-17'
                        title: Shocking Dark
                        video: false
                        vote_average: 4.5
                        vote_count: 66
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 878
                          - 28
                        id: 911529
                        original_language: ja
                        original_title: ターミネーター・斬KILL
                        overview: >-
                          In 2050, a nuclear war broke out all over the world.
                          With the help of a military industry family,
                          Tanahashi, Japanese Imperial Army plans to conquer the
                          world and sets up new government NEO YAMATO. In order
                          to against the tyranny of the new government, a
                          rebellious army of the government fights for peace.
                        popularity: 4.087
                        poster_path: /pkB5Fu0V4O1iRcOUmjbDVrZIFQ.jpg
                        release_date: '2009-07-09'
                        title: Terminator Zan Kill
                        video: false
                        vote_average: 5.7
                        vote_count: 17
                      - adult: false
                        backdrop_path: /9EzSR5gOeTTYn6j3WtubEHWQdeY.jpg
                        genre_ids:
                          - 18
                        id: 592776
                        original_language: fr
                        original_title: Terminal Sud
                        overview: >-
                          In a Mediterranean country plunging into armed
                          conflict, a doctor tries to do his duty against all
                          odds, until the day his destiny is turned upside down…
                        popularity: 4.01
                        poster_path: /5b8jjy8FoXuGx5tbjwwpQwvICIN.jpg
                        release_date: '2019-11-20'
                        title: South Terminal
                        video: false
                        vote_average: 5.3
                        vote_count: 44
                      - adult: false
                        backdrop_path: /2cGJyY6RpEDbSiyn4jrCFWqghyf.jpg
                        genre_ids:
                          - 28
                        id: 40027
                        original_language: en
                        original_title: Ninja Terminator
                        overview: >-
                          Three martial-arts students search for the Golden
                          Ninja Warrior, a statue reputed to have magic powers.
                        popularity: 5.493
                        poster_path: /5YkYpKxTQVq4gna3qTztwwwo8YF.jpg
                        release_date: '1985-01-01'
                        title: Ninja Terminator
                        video: false
                        vote_average: 6.2
                        vote_count: 60
                      - adult: false
                        backdrop_path: /n5foJGqw1sQd8eHpnb9aqRhsYzL.jpg
                        genre_ids:
                          - 18
                        id: 201043
                        original_language: ja
                        original_title: 終の信託
                        overview: >-
                          Shinzo Egi is an asthma sufferer who does not want to
                          be place on life support. As a last request, Shinzo
                          Egi asks his doctor Ayano Orii if she could follow his
                          wish. Doctor Ayano Orii is then questioned in a
                          criminal case because of her decision.
                        popularity: 4.25
                        poster_path: /pnU4OIZJuBN3QY3uVsnOySlPd5L.jpg
                        release_date: '2012-10-27'
                        title: The Terminal Trust
                        video: false
                        vote_average: 6
                        vote_count: 22
                      - adult: false
                        backdrop_path: /kWH43qHgNatlZ1DEpuxqNqiRbbO.jpg
                        genre_ids:
                          - 99
                        id: 473793
                        original_language: en
                        original_title: 'The Making of ''Terminator 2: Judgment Day'''
                        overview: >-
                          Documentary of the making of the sequel to the popular
                          Schwarzenegger film, The Terminator.
                        popularity: 9.748
                        poster_path: /m0k3vRqh4eVZONufDahNufHi8Em.jpg
                        release_date: '1991-09-10'
                        title: 'The Making of ''Terminator 2: Judgment Day'''
                        video: false
                        vote_average: 7
                        vote_count: 42
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 878
                        id: 1224717
                        original_language: en
                        original_title: 'Terminator: Skynet Rising'
                        overview: >-
                          Since Legion was destroyed, the machines have been
                          working to restore Skynet. Now the resistance has
                          discovered their plans and must find a way to prevent
                          them.
                        popularity: 4.773
                        poster_path: /wnaUR2gxwP5bhk7zkcyzm8u9don.jpg
                        release_date: '2024-11-13'
                        title: 'Terminator: Skynet Rising'
                        video: false
                        vote_average: 10
                        vote_count: 3
                  total_pages:
                    type: number
                    example: 6
                  total_results:
                    type: number
                    example: 111
              examples:
                Movie:
                  value:
                    page: 1
                    results:
                      - adult: false
                        backdrop_path: /wh4ze6klUbeichAj603OKZwY1W5.jpg
                        genre_ids:
                          - 28
                          - 53
                          - 878
                        id: 218
                        original_language: en
                        original_title: The Terminator
                        overview: >-
                          In the post-apocalyptic future, reigning tyrannical
                          supercomputers teleport a cyborg assassin known as the
                          "Terminator" back to 1984 to kill Sarah Connor, whose
                          unborn son is destined to lead insurgents against 21st
                          century mechanical hegemony. Meanwhile, the
                          human-resistance movement dispatches a lone warrior to
                          safeguard Sarah. Can he stop the virtually
                          indestructible killing machine?
                        popularity: 77.844
                        poster_path: /hzXSE66v6KthZ8nPoLZmsi2G05j.jpg
                        release_date: '1984-10-26'
                        title: The Terminator
                        video: false
                        vote_average: 7.661
                        vote_count: 13250
                      - adult: false
                        backdrop_path: /vINgGecnz95iDL6fjQMARDsocgG.jpg
                        genre_ids:
                          - 28
                          - 53
                          - 878
                        id: 280
                        original_language: en
                        original_title: 'Terminator 2: Judgment Day'
                        overview: >-
                          Set ten years after the events of the original, James
                          Cameron’s classic sci-fi action flick tells the story
                          of a second attempt to get rid of rebellion leader
                          John Connor, this time targeting the boy himself.
                          However, the rebellion has sent a reprogrammed
                          terminator to protect Connor.
                        popularity: 82.903
                        poster_path: /k1OuVCYxN8Nt6OE9VbzHXzfJsTy.jpg
                        release_date: '1991-07-03'
                        title: 'Terminator 2: Judgment Day'
                        video: false
                        vote_average: 8.117
                        vote_count: 12943
                      - adult: false
                        backdrop_path: /wvlIoof1FnKPLv9jAYanuP31V0C.jpg
                        genre_ids:
                          - 878
                          - 28
                          - 53
                          - 12
                        id: 87101
                        original_language: en
                        original_title: Terminator Genisys
                        overview: >-
                          The year is 2029. John Connor, leader of the
                          resistance continues the war against the machines. At
                          the Los Angeles offensive, John's fears of the unknown
                          future begin to emerge when TECOM spies reveal a new
                          plot by SkyNet that will attack him from both fronts;
                          past and future, and will ultimately change warfare
                          forever.
                        popularity: 74.782
                        poster_path: /oZRVDpNtmHk8M1VYy1aeOWUXgbC.jpg
                        release_date: '2015-06-23'
                        title: Terminator Genisys
                        video: false
                        vote_average: 5.9
                        vote_count: 8398
                      - adult: false
                        backdrop_path: /a6cDxdwaQIFjSkXf7uskg78ZyTq.jpg
                        genre_ids:
                          - 878
                          - 28
                          - 12
                        id: 290859
                        original_language: en
                        original_title: 'Terminator: Dark Fate'
                        overview: >-
                          Decades after Sarah Connor prevented Judgment Day, a
                          lethal new Terminator is sent to eliminate the future
                          leader of the resistance. In a fight to save mankind,
                          battle-hardened Sarah Connor teams up with an
                          unexpected ally and an enhanced super soldier to stop
                          the deadliest Terminator yet.
                        popularity: 61.327
                        poster_path: /vqzNJRH4YyquRiWxCCOH0aXggHI.jpg
                        release_date: '2019-10-23'
                        title: 'Terminator: Dark Fate'
                        video: false
                        vote_average: 6.429
                        vote_count: 5120
                      - adult: false
                        backdrop_path: /kbXMOnz2RhTSAbLtHX5hy5AXtwv.jpg
                        genre_ids:
                          - 28
                          - 53
                          - 878
                        id: 296
                        original_language: en
                        original_title: 'Terminator 3: Rise of the Machines'
                        overview: >-
                          It's been 10 years since John Connor saved Earth from
                          Judgment Day, and he's now living under the radar,
                          steering clear of using anything Skynet can trace.
                          That is, until he encounters T-X, a robotic assassin
                          ordered to finish what T-1000 started. Good thing
                          Connor's former nemesis, the Terminator, is back to
                          aid the now-adult Connor … just like he promised.
                        popularity: 55.544
                        poster_path: /vvevzdYIrk2636maNW4qeWmlPFG.jpg
                        release_date: '2003-07-02'
                        title: 'Terminator 3: Rise of the Machines'
                        video: false
                        vote_average: 6.165
                        vote_count: 6634
                      - adult: false
                        backdrop_path: /m9yHpYz4GcEtmHJW4rvQIrF891h.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 534
                        original_language: en
                        original_title: Terminator Salvation
                        overview: >-
                          All grown up in post-apocalyptic 2018, John Connor
                          must lead the resistance of humans against the
                          increasingly dominating militaristic robots. But when
                          Marcus Wright appears, his existence confuses the
                          mission as Connor tries to determine whether Wright
                          has come from the future or the past -- and whether
                          he's friend or foe.
                        popularity: 43.793
                        poster_path: /gw6JhlekZgtKUFlDTezq3j5JEPK.jpg
                        release_date: '2009-05-20'
                        title: Terminator Salvation
                        video: false
                        vote_average: 6.063
                        vote_count: 6462
                      - adult: false
                        backdrop_path: /oKV1jGBYeq7W3AVN9R2xUpgqE3n.jpg
                        genre_ids:
                          - 28
                          - 80
                          - 53
                        id: 45443
                        original_language: cn
                        original_title: 轟天皇家將
                        overview: >-
                          Two Hong Kong policewomen (Ida and Hon) take on a
                          Japanese boss who has returned from a seven-year exile
                          to retake his old turf.
                        popularity: 6.037
                        poster_path: /j1Sfvtkm0iSJ3i3tstvsIFMVyVV.jpg
                        release_date: '1992-10-10'
                        title: Angel Terminators
                        video: false
                        vote_average: 5
                        vote_count: 60
                      - adult: false
                        backdrop_path: /hBU2INkYLe3OBKZspT0TRd3nTxX.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 14
                          - 878
                        id: 61904
                        original_language: en
                        original_title: Pembalasan Ratu Pantai Selatan
                        overview: >-
                          The spirit of an ancient evil queen posesses the body
                          of a young anthropological student, who then goes on a
                          murderous rampage.
                        popularity: 6.624
                        poster_path: /lwOK1GHK8KRgiWhfBkEnQKPLgEi.jpg
                        release_date: '1989-06-10'
                        title: Lady Terminator
                        video: false
                        vote_average: 5.408
                        vote_count: 71
                      - adult: false
                        backdrop_path: /45fofvQm0YEAzpgrOuISqNoF66Y.jpg
                        genre_ids:
                          - 18
                          - 28
                        id: 162455
                        original_language: cn
                        original_title: 火種
                        overview: >-
                          Bullet, a female triad member, is recently released
                          from prison. Bullet hooks up with her old gang rather
                          quickly, although she is being closely watched by her
                          policeman father and his gritty female partner Big
                          Aunt . Bullet steals some jewels belonging to triad
                          gangster Chin Bo while helping her friend May, who has
                          been forced into prostitution. Chin Bo, also known as
                          Brother Mad, kidnaps May and another of Bullet's
                          friends to secure the return of his fortune, but the
                          exchange goes wrong and a furious gun battle erupts.
                        popularity: 9.811
                        poster_path: /gD8S9el4DLuDriRw3OjEgfOIMNp.jpg
                        release_date: '1992-11-07'
                        title: Angel Terminators 2
                        video: false
                        vote_average: 6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /eNO76RvyKyzrEY4nhhtzM8feBng.jpg
                        genre_ids:
                          - 35
                          - 878
                          - 28
                        id: 717823
                        original_language: ru
                        original_title: 'Terminator 5: Смерть Голливуда'
                        overview: >-
                          An unofficial sequel to Kefir-Profit's unofficial
                          Terminator sequel... This time featuring Superman,
                          Rambo, Neo from the Matrix, Harry Potter and the evil
                          Agent 007.
                        popularity: 2.059
                        poster_path: /7K84p0Tgo9wnR7ReBwnOoVfmXTk.jpg
                        release_date: '2004-01-01'
                        title: 'Terminator 5: The Death of Hollywood'
                        video: false
                        vote_average: 5.1
                        vote_count: 24
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 878
                          - 53
                        id: 233341
                        original_language: en
                        original_title: Terminator the Second
                        overview: >-
                          Terminator the Second is the premiere production of
                          the Nashville performance collective, Husky Jackal
                          Theater. A product of nearly a year of research and
                          revision, the script tells the story of a boy and his
                          cyborg protector entirely in lines and phrases taken
                          from the plays of William Shakespeare. Each line and
                          phrase is taken from original folios, with only proper
                          nouns, pronouns and corresponding verb tenses subject
                          to change. In doing so, the authors were able to
                          accurately recreate the story of Terminator 2:
                          Judgement Day, while remaining true to the words of
                          Shakespeare in form, if less so in intent.
                        popularity: 1.968
                        poster_path: /7oONKOvf7mwtostNeWkhKUgj8EX.jpg
                        release_date: '2013-11-01'
                        title: Terminator the Second
                        video: false
                        vote_average: 5.3
                        vote_count: 23
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 35
                          - 27
                        id: 965618
                        original_language: fi
                        original_title: 'Video Cop: Terminator Commando'
                        overview: >-
                          Jake Crusher is a cop from the 80's who gets sucked
                          into a VCR where he becomes Video Cop.
                        popularity: 1.195
                        poster_path: /ge2YeTh5DpdxzS32u1eHPIGV36w.jpg
                        release_date: '2017-08-25'
                        title: Terminator Commando
                        video: false
                        vote_average: 4.9
                        vote_count: 15
                      - adult: false
                        backdrop_path: /puiwodUrPSDTkvlIRr2CdDM1isB.jpg
                        genre_ids:
                          - 28
                          - 27
                          - 878
                        id: 26342
                        original_language: en
                        original_title: The Terminators
                        overview: >-
                          A small band of resistance fighters battle the cyborgs
                          that have taken control of the planet.
                        popularity: 9.823
                        poster_path: /7LV3sg3bJOGFD6J0gn7Wt1IL5SK.jpg
                        release_date: '2009-04-28'
                        title: The Terminators
                        video: false
                        vote_average: 4.2
                        vote_count: 72
                      - adult: false
                        backdrop_path: /mdmO1o8HhmOKCadFhDXj3TUNlZ.jpg
                        genre_ids:
                          - 28
                          - 878
                          - 27
                        id: 66664
                        original_language: it
                        original_title: Terminator 2
                        overview: >-
                          In a polluted future Venice researchers work to
                          improve the situation. One day, unknown forces start
                          killing them. A team of soldiers and a couple of
                          civilians is sent to investigate. Soon, they encounter
                          strange murderous creatures.
                        popularity: 8.848
                        poster_path: /tztmdSyvfvQBVyzqyh6sKQeJP5g.jpg
                        release_date: '1989-03-17'
                        title: Shocking Dark
                        video: false
                        vote_average: 4.5
                        vote_count: 66
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 878
                          - 28
                        id: 911529
                        original_language: ja
                        original_title: ターミネーター・斬KILL
                        overview: >-
                          In 2050, a nuclear war broke out all over the world.
                          With the help of a military industry family,
                          Tanahashi, Japanese Imperial Army plans to conquer the
                          world and sets up new government NEO YAMATO. In order
                          to against the tyranny of the new government, a
                          rebellious army of the government fights for peace.
                        popularity: 4.087
                        poster_path: /pkB5Fu0V4O1iRcOUmjbDVrZIFQ.jpg
                        release_date: '2009-07-09'
                        title: Terminator Zan Kill
                        video: false
                        vote_average: 5.7
                        vote_count: 17
                      - adult: false
                        backdrop_path: /9EzSR5gOeTTYn6j3WtubEHWQdeY.jpg
                        genre_ids:
                          - 18
                        id: 592776
                        original_language: fr
                        original_title: Terminal Sud
                        overview: >-
                          In a Mediterranean country plunging into armed
                          conflict, a doctor tries to do his duty against all
                          odds, until the day his destiny is turned upside down…
                        popularity: 4.01
                        poster_path: /5b8jjy8FoXuGx5tbjwwpQwvICIN.jpg
                        release_date: '2019-11-20'
                        title: South Terminal
                        video: false
                        vote_average: 5.3
                        vote_count: 44
                      - adult: false
                        backdrop_path: /2cGJyY6RpEDbSiyn4jrCFWqghyf.jpg
                        genre_ids:
                          - 28
                        id: 40027
                        original_language: en
                        original_title: Ninja Terminator
                        overview: >-
                          Three martial-arts students search for the Golden
                          Ninja Warrior, a statue reputed to have magic powers.
                        popularity: 5.493
                        poster_path: /5YkYpKxTQVq4gna3qTztwwwo8YF.jpg
                        release_date: '1985-01-01'
                        title: Ninja Terminator
                        video: false
                        vote_average: 6.2
                        vote_count: 60
                      - adult: false
                        backdrop_path: /n5foJGqw1sQd8eHpnb9aqRhsYzL.jpg
                        genre_ids:
                          - 18
                        id: 201043
                        original_language: ja
                        original_title: 終の信託
                        overview: >-
                          Shinzo Egi is an asthma sufferer who does not want to
                          be place on life support. As a last request, Shinzo
                          Egi asks his doctor Ayano Orii if she could follow his
                          wish. Doctor Ayano Orii is then questioned in a
                          criminal case because of her decision.
                        popularity: 4.25
                        poster_path: /pnU4OIZJuBN3QY3uVsnOySlPd5L.jpg
                        release_date: '2012-10-27'
                        title: The Terminal Trust
                        video: false
                        vote_average: 6
                        vote_count: 22
                      - adult: false
                        backdrop_path: /kWH43qHgNatlZ1DEpuxqNqiRbbO.jpg
                        genre_ids:
                          - 99
                        id: 473793
                        original_language: en
                        original_title: 'The Making of ''Terminator 2: Judgment Day'''
                        overview: >-
                          Documentary of the making of the sequel to the popular
                          Schwarzenegger film, The Terminator.
                        popularity: 9.748
                        poster_path: /m0k3vRqh4eVZONufDahNufHi8Em.jpg
                        release_date: '1991-09-10'
                        title: 'The Making of ''Terminator 2: Judgment Day'''
                        video: false
                        vote_average: 7
                        vote_count: 42
                      - adult: false
                        backdrop_path: null
                        genre_ids:
                          - 28
                          - 878
                        id: 1224717
                        original_language: en
                        original_title: 'Terminator: Skynet Rising'
                        overview: >-
                          Since Legion was destroyed, the machines have been
                          working to restore Skynet. Now the resistance has
                          discovered their plans and must find a way to prevent
                          them.
                        popularity: 4.773
                        poster_path: /wnaUR2gxwP5bhk7zkcyzm8u9don.jpg
                        release_date: '2024-11-13'
                        title: 'Terminator: Skynet Rising'
                        video: false
                        vote_average: 10
                        vote_count: 3
                    total_pages: 6
                    total_results: 111
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````