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

# Movie Credit

> This endpoint get the movie credits of a person



## OpenAPI

````yaml get /3/person/{person_id}/movie_credits
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/person/{person_id}/movie_credits:
    parameters:
      - name: person_id
        in: path
        required: true
        schema:
          type: integer
          example: 52139
    get:
      tags:
        - PEOPLE
      summary: Movie Credit
      description: This endpoint get the movie credits of a person
      operationId: movieCredit
      parameters:
        - name: langauge
          in: query
          schema:
            type: string
            default: en-US
      responses:
        '200':
          description: Movie Credit
          headers:
            Age:
              schema:
                type: string
                example: '39'
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=15055
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:40:26 GMT
            ETag:
              schema:
                type: string
                example: W/"b33b751117f15be364ea2265fec5a68d"
            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 58323cef7927326b4721718ec24b0aae.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: v9to5kmVaVNYtYsn-b7n6EQ6gcEAVTu1gwFJIcZvusVheJ3l3Jtv-g==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Hit from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '12400'
            x-memc-expires:
              schema:
                type: string
                example: '15055'
            x-memc-key:
              schema:
                type: string
                example: 25b2679fe76d4075f109db08004d2a87
          content:
            application/json:
              schema:
                type: object
                properties:
                  cast:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg
                        character:
                          type: string
                          example: Nemo (voice)
                        credit_id:
                          type: string
                          example: 52fe420ec3a36847f8000675
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 16
                          example:
                            - 16
                            - 10751
                        id:
                          type: number
                          example: 12
                        order:
                          type: number
                          example: 2
                        original_language:
                          type: string
                          example: en
                        original_title:
                          type: string
                          example: Finding Nemo
                        overview:
                          type: string
                          example: >-
                            Nemo, an adventurous young clownfish, is
                            unexpectedly taken from his Great Barrier Reef home
                            to a dentist's office aquarium. It's up to his
                            worrisome father Marlin and a friendly but forgetful
                            fish Dory to bring Nemo home -- meeting vegetarian
                            sharks, surfer dude turtles, hypnotic jellyfish,
                            hungry seagulls, and more along the way.
                        popularity:
                          type: number
                          example: 102.334
                        poster_path:
                          type: string
                          nullable: true
                          example: /eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg
                        release_date:
                          type: string
                          example: '2003-05-30'
                        title:
                          type: string
                          example: Finding Nemo
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.819
                        vote_count:
                          type: number
                          example: 19308
                    example:
                      - adult: false
                        backdrop_path: /eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg
                        character: Nemo (voice)
                        credit_id: 52fe420ec3a36847f8000675
                        genre_ids:
                          - 16
                          - 10751
                        id: 12
                        order: 2
                        original_language: en
                        original_title: Finding Nemo
                        overview: >-
                          Nemo, an adventurous young clownfish, is unexpectedly
                          taken from his Great Barrier Reef home to a dentist's
                          office aquarium. It's up to his worrisome father
                          Marlin and a friendly but forgetful fish Dory to bring
                          Nemo home -- meeting vegetarian sharks, surfer dude
                          turtles, hypnotic jellyfish, hungry seagulls, and more
                          along the way.
                        popularity: 102.334
                        poster_path: /eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg
                        release_date: '2003-05-30'
                        title: Finding Nemo
                        video: false
                        vote_average: 7.819
                        vote_count: 19308
                      - adult: false
                        backdrop_path: null
                        character: David Collins
                        credit_id: 614911eae5593700431c4a12
                        genre_ids:
                          - 18
                          - 27
                        id: 876457
                        order: 3
                        original_language: en
                        original_title: Dark Shadows
                        overview: >-
                          The pilot for a proposed remake of the '60s gothic
                          soap opera. It was produced in 2004 for The WB network
                          but was not picked up and has never aired on
                          television. The pilot instead premiered in 2005 at the
                          Dark Shadows Festival in Los Angeles and has screened
                          at various such festivals since.
                        popularity: 1.173
                        poster_path: /vrAsf6sc88kEoOc4j4PRxkZjZNa.jpg
                        release_date: '2005-07-01'
                        title: Dark Shadows
                        video: false
                        vote_average: 8.6
                        vote_count: 13
                      - adult: false
                        backdrop_path: /ebug4NE8EV0f345KwbNNS3T3dRh.jpg
                        character: Bambi (voice)
                        credit_id: 52fe454e9251416c75052107
                        genre_ids:
                          - 16
                          - 18
                          - 10751
                        id: 13205
                        order: 0
                        original_language: en
                        original_title: Bambi II
                        overview: >-
                          Return to the forest and join Bambi as he reunites
                          with his father, The Great Prince, who must now raise
                          the young fawn on his own. But in the adventure of a
                          lifetime, the proud parent discovers there is much he
                          can learn from his spirited young son.
                        popularity: 19.88
                        poster_path: /wIVLCnwYynKIiAheJoEQtC8gTjq.jpg
                        release_date: '2006-01-26'
                        title: Bambi II
                        video: false
                        vote_average: 6.5
                        vote_count: 991
                      - adult: false
                        backdrop_path: /3YqFugvX6pQA3FU17maO0DgAo7.jpg
                        character: Kid (voice)
                        credit_id: 52fe4555c3a36847f80c8543
                        genre_ids:
                          - 12
                          - 16
                          - 35
                          - 10751
                        id: 9975
                        order: 18
                        original_language: en
                        original_title: Curious George
                        overview: >-
                          When The Man in the Yellow Hat befriends Curious
                          George in the jungle, they set off on a non-stop,
                          fun-filled journey through the wonders of the big city
                          toward the warmth of true friendship.
                        popularity: 20.248
                        poster_path: /aGHC2lVMJtCwH6L40K5QnMeNIds.jpg
                        release_date: '2006-02-10'
                        title: Curious George
                        video: false
                        vote_average: 6.4
                        vote_count: 501
                      - adult: false
                        backdrop_path: /49ILd5rNFwPBo2jv9UpWSwesNRa.jpg
                        character: Nemo (voice)
                        credit_id: 644760ec21118f04b9f325f6
                        genre_ids:
                          - 16
                          - 99
                          - 35
                        id: 296850
                        order: 3
                        original_language: en
                        original_title: Exploring the Reef
                        overview: >-
                          Jean-Michael Cousteau's documentary about the Great
                          Barrier Reef keeps getting interrupted by characters
                          from Disney's Finding Nemo.
                        popularity: 4.447
                        poster_path: /lwH5KqAynqqnpIQK9g6B80ksAtU.jpg
                        release_date: '2003-11-04'
                        title: Exploring the Reef
                        video: false
                        vote_average: 6.3
                        vote_count: 18
                      - adult: false
                        backdrop_path: null
                        character: Narrator (voice)
                        credit_id: 61e5c86d57176f0062ccf3e5
                        genre_ids:
                          - 16
                        id: 928081
                        order: 0
                        original_language: en
                        original_title: Diary of a Worm
                        overview: >-
                          Meet a worm not that different from you or me, except
                          that his head looks a lot like his tail! A hysterical
                          journal about the daily doings and the hidden world of
                          a lovable underground dweller that will be sure to
                          delight kids both young and old.
                        popularity: 0.846
                        poster_path: /lyJ4oqqvdC81WoLik028DPZQtqP.jpg
                        release_date: '2005-10-31'
                        title: Diary of a Worm
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        character: Arthur
                        credit_id: 52fe4ba1c3a368484e19222f
                        genre_ids:
                          - 28
                          - 35
                        id: 132936
                        order: 9
                        original_language: en
                        original_title: Wheelmen
                        overview: >-
                          Two limo drivers hope to make money by escorting an
                          executive around Los Angeles. Things go awry when they
                          get caught up in a sabotage plot to assassinate the
                          Vice President of the United States.
                        popularity: 1.289
                        poster_path: /7kOHaku4ZYRz6OhNlgYixkwtEnp.jpg
                        release_date: '2005-06-03'
                        title: Wheelmen
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /y53r9qgxybrfuknz9356I7V8CP4.jpg
                        character: Jimmy Olsen (voice)
                        credit_id: 52fe4c96c3a36847f823571b
                        genre_ids:
                          - 16
                          - 28
                          - 12
                        id: 166076
                        order: 8
                        original_language: en
                        original_title: 'Superman: Unbound'
                        overview: >-
                          Superman and Supergirl take on the cybernetic being
                          known as Brainiac, who boasts that he possesses "the
                          knowledge and strength of 10,000 worlds."
                        popularity: 12.91
                        poster_path: /nnZKtmVSnueWd4pjk1BekLJxXRL.jpg
                        release_date: '2013-04-23'
                        title: 'Superman: Unbound'
                        video: false
                        vote_average: 6.6
                        vote_count: 399
                      - adult: false
                        backdrop_path: null
                        character: ''
                        credit_id: 62715daa7cffda731798ff19
                        genre_ids:
                          - 16
                          - 10751
                        id: 423887
                        order: 2
                        original_language: en
                        original_title: >-
                          The Teacher from the Black Lagoon… and More Slightly
                          Scary Stories
                        overview: >-
                          This kid-friendly collection of slightly spooky
                          animated tales includes an adaptation of Mike Thayer’s
                          “The Teacher from the Black Lagoon,” about a boy’s
                          wild nightmares concerning his teacher on the first
                          day of school. Other stories include Tomi Ungerer’s
                          “The Three Robbers,” James Stevenson’s “What’s Under
                          My Bed?” and Caroline Stutson’s “By the Light of the
                          Halloween Moon,” in which a clever girl foils the
                          plans of holiday ghouls.
                        popularity: 0.29
                        poster_path: null
                        release_date: '2004-01-01'
                        title: >-
                          The Teacher from the Black Lagoon… and More Slightly
                          Scary Stories
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /jbdvzJvNu0swWURJp71Fxwd54Fm.jpg
                        character: Self / Nemo (voice) (archive footage)
                        credit_id: 62bb9fff17b5ef04e6b317c1
                        genre_ids:
                          - 99
                        id: 15302
                        order: 87
                        original_language: en
                        original_title: The Pixar Story
                        overview: >-
                          A look at the first years of Pixar Animation Studios -
                          from the success of "Toy Story" and Pixar's promotion
                          of talented people, to the building of its East Bay
                          campus, the company's relationship with Disney, and
                          its remarkable initial string of eight hits. The
                          contributions of John Lasseter, Ed Catmull and Steve
                          Jobs are profiled. The decline of two-dimensional
                          animation is chronicled as three-dimensional animation
                          rises. Hard work and creativity seem to share the
                          screen in equal proportions.
                        popularity: 12.721
                        poster_path: /vhK51wJybwZTRCPVUOkGpSI4auN.jpg
                        release_date: '2007-08-28'
                        title: The Pixar Story
                        video: false
                        vote_average: 7.5
                        vote_count: 226
                      - adult: false
                        backdrop_path: /xJhiOb8GguUam5HyECKbIO3RsuD.jpg
                        character: Young Billy
                        credit_id: 5558ab74c3a3687772009299
                        genre_ids:
                          - 27
                          - 53
                        id: 16028
                        order: 6
                        original_language: en
                        original_title: They
                        overview: >-
                          A psychology student who experienced night terrors as
                          a child must face the chilling realization that her
                          nightmares were not all in her head.
                        popularity: 10.157
                        poster_path: /nHG0VOW6o99tP5EACtKTMADqxJQ.jpg
                        release_date: '2002-11-01'
                        title: They
                        video: false
                        vote_average: 5.053
                        vote_count: 264
                      - adult: false
                        backdrop_path: /wijltj1toRcicHlCn8Cpsp4yPXe.jpg
                        character: Passenger Carl (voice)
                        credit_id: 575a9ef6c3a3684188000f8c
                        genre_ids:
                          - 12
                          - 16
                          - 35
                          - 10751
                        id: 127380
                        order: 16
                        original_language: en
                        original_title: Finding Dory
                        overview: >-
                          Dory is reunited with her friends Nemo and Marlin in
                          the search for answers about her past. What can she
                          remember? Who are her parents? And where did she learn
                          to speak Whale?
                        popularity: 46.312
                        poster_path: /3UVe8NL1E2ZdUZ9EDlKGJY5UzE.jpg
                        release_date: '2016-06-16'
                        title: Finding Dory
                        video: false
                        vote_average: 7
                        vote_count: 12037
                      - adult: false
                        backdrop_path: /kpRHjVdvo9N3G3WAB9lIvft6SO3.jpg
                        character: Twitch
                        credit_id: 5a761d28925141059c03710a
                        genre_ids:
                          - 35
                          - 18
                          - 10751
                        id: 24115
                        order: 4
                        original_language: en
                        original_title: How to Eat Fried Worms
                        overview: >-
                          During the first day of his new school year, a fifth
                          grade boy squares off against a bully and winds up
                          accepting a dare that could change the balance of
                          power within the class.
                        popularity: 7.058
                        poster_path: /6064mXPZqFylDWcVKD888D3sN5T.jpg
                        release_date: '2006-08-25'
                        title: How to Eat Fried Worms
                        video: false
                        vote_average: 6.1
                        vote_count: 111
                      - adult: false
                        backdrop_path: /mugVHtGhT8YpNfvVNW3b5F2m0Al.jpg
                        character: Young Ben
                        credit_id: 5aa1b9099251412c560049e0
                        genre_ids:
                          - 27
                          - 878
                        id: 49804
                        order: 5
                        original_language: en
                        original_title: The Day the World Ended
                        overview: >-
                          A school psychologist investigates the death of a
                          student's mother and finds the boy believes he is the
                          son of an alien being.
                        popularity: 3.457
                        poster_path: /4PFOqLdY6WlDoY38GLHbBN4Hrd8.jpg
                        release_date: '2001-11-23'
                        title: The Day the World Ended
                        video: false
                        vote_average: 4.107
                        vote_count: 28
                      - adult: false
                        backdrop_path: /guqPOnpVTBOTHo6u0GHJJlaT6sD.jpg
                        character: Little Boy (Uncredited)
                        credit_id: 5aa1b9f20e0a260d4800508a
                        genre_ids:
                          - 10749
                          - 18
                          - 14
                        id: 795
                        order: 17
                        original_language: en
                        original_title: City of Angels
                        overview: >-
                          When a guardian angel – who invisibly watches over the
                          citizens of Los Angeles – becomes captivated by a
                          strong-willed heart surgeon, he ponders trading in his
                          pure, otherworldly existence for a mortal life with
                          his beloved. The couple embarks on a tender but
                          forbidden romance spanning heaven and Earth.
                        popularity: 22.926
                        poster_path: /iuzxpUjHsbQJXV3kB9ZAdCimM60.jpg
                        release_date: '1998-04-10'
                        title: City of Angels
                        video: false
                        vote_average: 6.796
                        vote_count: 2119
                      - adult: false
                        backdrop_path: null
                        character: Peter Cobb
                        credit_id: 5aa1b970c3a3686672004838
                        genre_ids:
                          - 80
                          - 18
                          - 9648
                        id: 258562
                        order: 5
                        original_language: en
                        original_title: Mexico City
                        overview: >-
                          When her brother disappears during a brief travel
                          layover in Mexico, Mitch begins a desperate search
                          that will eventually lead the young divorcee into the
                          capital city's most notorious neighborhood. But even
                          with the aid of the American Ambassador, her plight is
                          only met with indifference and inaction from the
                          authorities. As the story unfolds, Mitch is forced to
                          look for help in the least likely places as she races
                          against time in a dangerous quest to find answers and
                          locate her brother.
                        popularity: 1.74
                        poster_path: /eQizAZPSJC3dnaMeVe72y71K5zP.jpg
                        release_date: '2000-11-01'
                        title: Mexico City
                        video: false
                        vote_average: 4.9
                        vote_count: 10
                      - adult: false
                        backdrop_path: /45QAMtBTHViSSKdGz6voOFa9tBr.jpg
                        character: Hubie (narrator)
                        credit_id: 5e964d275907de0014dd056c
                        genre_ids:
                          - 16
                        id: 693387
                        order: 1
                        original_language: en
                        original_title: The Librarian from the Black Lagoon
                        overview: >-
                          based on the book of the same name, Hubie's class is
                          going to visit the library for the first time, and
                          rumor has it the library is a dark dungeon of rules
                          and misery. Presiding over the ghastly proceedings is
                          Mrs. Beamster, better known as: The Laminator. Hubie
                          is sure he's doomed...but when he actually gets to the
                          library, will things be as he expected?
                        popularity: 0.02
                        poster_path: /e8qWfW8Q0Sm5IIMi1rkserrjJrO.jpg
                        release_date: '2007-01-01'
                        title: The Librarian from the Black Lagoon
                        video: false
                        vote_average: 0
                        vote_count: 0
                  crew:
                    type: array
                    items: {}
                    example: []
                  id:
                    type: number
                    example: 12
              examples:
                Movie Credit:
                  value:
                    cast:
                      - adult: false
                        backdrop_path: /eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg
                        character: Nemo (voice)
                        credit_id: 52fe420ec3a36847f8000675
                        genre_ids:
                          - 16
                          - 10751
                        id: 12
                        order: 2
                        original_language: en
                        original_title: Finding Nemo
                        overview: >-
                          Nemo, an adventurous young clownfish, is unexpectedly
                          taken from his Great Barrier Reef home to a dentist's
                          office aquarium. It's up to his worrisome father
                          Marlin and a friendly but forgetful fish Dory to bring
                          Nemo home -- meeting vegetarian sharks, surfer dude
                          turtles, hypnotic jellyfish, hungry seagulls, and more
                          along the way.
                        popularity: 102.334
                        poster_path: /eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg
                        release_date: '2003-05-30'
                        title: Finding Nemo
                        video: false
                        vote_average: 7.819
                        vote_count: 19308
                      - adult: false
                        backdrop_path: null
                        character: David Collins
                        credit_id: 614911eae5593700431c4a12
                        genre_ids:
                          - 18
                          - 27
                        id: 876457
                        order: 3
                        original_language: en
                        original_title: Dark Shadows
                        overview: >-
                          The pilot for a proposed remake of the '60s gothic
                          soap opera. It was produced in 2004 for The WB network
                          but was not picked up and has never aired on
                          television. The pilot instead premiered in 2005 at the
                          Dark Shadows Festival in Los Angeles and has screened
                          at various such festivals since.
                        popularity: 1.173
                        poster_path: /vrAsf6sc88kEoOc4j4PRxkZjZNa.jpg
                        release_date: '2005-07-01'
                        title: Dark Shadows
                        video: false
                        vote_average: 8.6
                        vote_count: 13
                      - adult: false
                        backdrop_path: /ebug4NE8EV0f345KwbNNS3T3dRh.jpg
                        character: Bambi (voice)
                        credit_id: 52fe454e9251416c75052107
                        genre_ids:
                          - 16
                          - 18
                          - 10751
                        id: 13205
                        order: 0
                        original_language: en
                        original_title: Bambi II
                        overview: >-
                          Return to the forest and join Bambi as he reunites
                          with his father, The Great Prince, who must now raise
                          the young fawn on his own. But in the adventure of a
                          lifetime, the proud parent discovers there is much he
                          can learn from his spirited young son.
                        popularity: 19.88
                        poster_path: /wIVLCnwYynKIiAheJoEQtC8gTjq.jpg
                        release_date: '2006-01-26'
                        title: Bambi II
                        video: false
                        vote_average: 6.5
                        vote_count: 991
                      - adult: false
                        backdrop_path: /3YqFugvX6pQA3FU17maO0DgAo7.jpg
                        character: Kid (voice)
                        credit_id: 52fe4555c3a36847f80c8543
                        genre_ids:
                          - 12
                          - 16
                          - 35
                          - 10751
                        id: 9975
                        order: 18
                        original_language: en
                        original_title: Curious George
                        overview: >-
                          When The Man in the Yellow Hat befriends Curious
                          George in the jungle, they set off on a non-stop,
                          fun-filled journey through the wonders of the big city
                          toward the warmth of true friendship.
                        popularity: 20.248
                        poster_path: /aGHC2lVMJtCwH6L40K5QnMeNIds.jpg
                        release_date: '2006-02-10'
                        title: Curious George
                        video: false
                        vote_average: 6.4
                        vote_count: 501
                      - adult: false
                        backdrop_path: /49ILd5rNFwPBo2jv9UpWSwesNRa.jpg
                        character: Nemo (voice)
                        credit_id: 644760ec21118f04b9f325f6
                        genre_ids:
                          - 16
                          - 99
                          - 35
                        id: 296850
                        order: 3
                        original_language: en
                        original_title: Exploring the Reef
                        overview: >-
                          Jean-Michael Cousteau's documentary about the Great
                          Barrier Reef keeps getting interrupted by characters
                          from Disney's Finding Nemo.
                        popularity: 4.447
                        poster_path: /lwH5KqAynqqnpIQK9g6B80ksAtU.jpg
                        release_date: '2003-11-04'
                        title: Exploring the Reef
                        video: false
                        vote_average: 6.3
                        vote_count: 18
                      - adult: false
                        backdrop_path: null
                        character: Narrator (voice)
                        credit_id: 61e5c86d57176f0062ccf3e5
                        genre_ids:
                          - 16
                        id: 928081
                        order: 0
                        original_language: en
                        original_title: Diary of a Worm
                        overview: >-
                          Meet a worm not that different from you or me, except
                          that his head looks a lot like his tail! A hysterical
                          journal about the daily doings and the hidden world of
                          a lovable underground dweller that will be sure to
                          delight kids both young and old.
                        popularity: 0.846
                        poster_path: /lyJ4oqqvdC81WoLik028DPZQtqP.jpg
                        release_date: '2005-10-31'
                        title: Diary of a Worm
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        character: Arthur
                        credit_id: 52fe4ba1c3a368484e19222f
                        genre_ids:
                          - 28
                          - 35
                        id: 132936
                        order: 9
                        original_language: en
                        original_title: Wheelmen
                        overview: >-
                          Two limo drivers hope to make money by escorting an
                          executive around Los Angeles. Things go awry when they
                          get caught up in a sabotage plot to assassinate the
                          Vice President of the United States.
                        popularity: 1.289
                        poster_path: /7kOHaku4ZYRz6OhNlgYixkwtEnp.jpg
                        release_date: '2005-06-03'
                        title: Wheelmen
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /y53r9qgxybrfuknz9356I7V8CP4.jpg
                        character: Jimmy Olsen (voice)
                        credit_id: 52fe4c96c3a36847f823571b
                        genre_ids:
                          - 16
                          - 28
                          - 12
                        id: 166076
                        order: 8
                        original_language: en
                        original_title: 'Superman: Unbound'
                        overview: >-
                          Superman and Supergirl take on the cybernetic being
                          known as Brainiac, who boasts that he possesses "the
                          knowledge and strength of 10,000 worlds."
                        popularity: 12.91
                        poster_path: /nnZKtmVSnueWd4pjk1BekLJxXRL.jpg
                        release_date: '2013-04-23'
                        title: 'Superman: Unbound'
                        video: false
                        vote_average: 6.6
                        vote_count: 399
                      - adult: false
                        backdrop_path: null
                        character: ''
                        credit_id: 62715daa7cffda731798ff19
                        genre_ids:
                          - 16
                          - 10751
                        id: 423887
                        order: 2
                        original_language: en
                        original_title: >-
                          The Teacher from the Black Lagoon… and More Slightly
                          Scary Stories
                        overview: >-
                          This kid-friendly collection of slightly spooky
                          animated tales includes an adaptation of Mike Thayer’s
                          “The Teacher from the Black Lagoon,” about a boy’s
                          wild nightmares concerning his teacher on the first
                          day of school. Other stories include Tomi Ungerer’s
                          “The Three Robbers,” James Stevenson’s “What’s Under
                          My Bed?” and Caroline Stutson’s “By the Light of the
                          Halloween Moon,” in which a clever girl foils the
                          plans of holiday ghouls.
                        popularity: 0.29
                        poster_path: null
                        release_date: '2004-01-01'
                        title: >-
                          The Teacher from the Black Lagoon… and More Slightly
                          Scary Stories
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /jbdvzJvNu0swWURJp71Fxwd54Fm.jpg
                        character: Self / Nemo (voice) (archive footage)
                        credit_id: 62bb9fff17b5ef04e6b317c1
                        genre_ids:
                          - 99
                        id: 15302
                        order: 87
                        original_language: en
                        original_title: The Pixar Story
                        overview: >-
                          A look at the first years of Pixar Animation Studios -
                          from the success of "Toy Story" and Pixar's promotion
                          of talented people, to the building of its East Bay
                          campus, the company's relationship with Disney, and
                          its remarkable initial string of eight hits. The
                          contributions of John Lasseter, Ed Catmull and Steve
                          Jobs are profiled. The decline of two-dimensional
                          animation is chronicled as three-dimensional animation
                          rises. Hard work and creativity seem to share the
                          screen in equal proportions.
                        popularity: 12.721
                        poster_path: /vhK51wJybwZTRCPVUOkGpSI4auN.jpg
                        release_date: '2007-08-28'
                        title: The Pixar Story
                        video: false
                        vote_average: 7.5
                        vote_count: 226
                      - adult: false
                        backdrop_path: /xJhiOb8GguUam5HyECKbIO3RsuD.jpg
                        character: Young Billy
                        credit_id: 5558ab74c3a3687772009299
                        genre_ids:
                          - 27
                          - 53
                        id: 16028
                        order: 6
                        original_language: en
                        original_title: They
                        overview: >-
                          A psychology student who experienced night terrors as
                          a child must face the chilling realization that her
                          nightmares were not all in her head.
                        popularity: 10.157
                        poster_path: /nHG0VOW6o99tP5EACtKTMADqxJQ.jpg
                        release_date: '2002-11-01'
                        title: They
                        video: false
                        vote_average: 5.053
                        vote_count: 264
                      - adult: false
                        backdrop_path: /wijltj1toRcicHlCn8Cpsp4yPXe.jpg
                        character: Passenger Carl (voice)
                        credit_id: 575a9ef6c3a3684188000f8c
                        genre_ids:
                          - 12
                          - 16
                          - 35
                          - 10751
                        id: 127380
                        order: 16
                        original_language: en
                        original_title: Finding Dory
                        overview: >-
                          Dory is reunited with her friends Nemo and Marlin in
                          the search for answers about her past. What can she
                          remember? Who are her parents? And where did she learn
                          to speak Whale?
                        popularity: 46.312
                        poster_path: /3UVe8NL1E2ZdUZ9EDlKGJY5UzE.jpg
                        release_date: '2016-06-16'
                        title: Finding Dory
                        video: false
                        vote_average: 7
                        vote_count: 12037
                      - adult: false
                        backdrop_path: /kpRHjVdvo9N3G3WAB9lIvft6SO3.jpg
                        character: Twitch
                        credit_id: 5a761d28925141059c03710a
                        genre_ids:
                          - 35
                          - 18
                          - 10751
                        id: 24115
                        order: 4
                        original_language: en
                        original_title: How to Eat Fried Worms
                        overview: >-
                          During the first day of his new school year, a fifth
                          grade boy squares off against a bully and winds up
                          accepting a dare that could change the balance of
                          power within the class.
                        popularity: 7.058
                        poster_path: /6064mXPZqFylDWcVKD888D3sN5T.jpg
                        release_date: '2006-08-25'
                        title: How to Eat Fried Worms
                        video: false
                        vote_average: 6.1
                        vote_count: 111
                      - adult: false
                        backdrop_path: /mugVHtGhT8YpNfvVNW3b5F2m0Al.jpg
                        character: Young Ben
                        credit_id: 5aa1b9099251412c560049e0
                        genre_ids:
                          - 27
                          - 878
                        id: 49804
                        order: 5
                        original_language: en
                        original_title: The Day the World Ended
                        overview: >-
                          A school psychologist investigates the death of a
                          student's mother and finds the boy believes he is the
                          son of an alien being.
                        popularity: 3.457
                        poster_path: /4PFOqLdY6WlDoY38GLHbBN4Hrd8.jpg
                        release_date: '2001-11-23'
                        title: The Day the World Ended
                        video: false
                        vote_average: 4.107
                        vote_count: 28
                      - adult: false
                        backdrop_path: /guqPOnpVTBOTHo6u0GHJJlaT6sD.jpg
                        character: Little Boy (Uncredited)
                        credit_id: 5aa1b9f20e0a260d4800508a
                        genre_ids:
                          - 10749
                          - 18
                          - 14
                        id: 795
                        order: 17
                        original_language: en
                        original_title: City of Angels
                        overview: >-
                          When a guardian angel – who invisibly watches over the
                          citizens of Los Angeles – becomes captivated by a
                          strong-willed heart surgeon, he ponders trading in his
                          pure, otherworldly existence for a mortal life with
                          his beloved. The couple embarks on a tender but
                          forbidden romance spanning heaven and Earth.
                        popularity: 22.926
                        poster_path: /iuzxpUjHsbQJXV3kB9ZAdCimM60.jpg
                        release_date: '1998-04-10'
                        title: City of Angels
                        video: false
                        vote_average: 6.796
                        vote_count: 2119
                      - adult: false
                        backdrop_path: null
                        character: Peter Cobb
                        credit_id: 5aa1b970c3a3686672004838
                        genre_ids:
                          - 80
                          - 18
                          - 9648
                        id: 258562
                        order: 5
                        original_language: en
                        original_title: Mexico City
                        overview: >-
                          When her brother disappears during a brief travel
                          layover in Mexico, Mitch begins a desperate search
                          that will eventually lead the young divorcee into the
                          capital city's most notorious neighborhood. But even
                          with the aid of the American Ambassador, her plight is
                          only met with indifference and inaction from the
                          authorities. As the story unfolds, Mitch is forced to
                          look for help in the least likely places as she races
                          against time in a dangerous quest to find answers and
                          locate her brother.
                        popularity: 1.74
                        poster_path: /eQizAZPSJC3dnaMeVe72y71K5zP.jpg
                        release_date: '2000-11-01'
                        title: Mexico City
                        video: false
                        vote_average: 4.9
                        vote_count: 10
                      - adult: false
                        backdrop_path: /45QAMtBTHViSSKdGz6voOFa9tBr.jpg
                        character: Hubie (narrator)
                        credit_id: 5e964d275907de0014dd056c
                        genre_ids:
                          - 16
                        id: 693387
                        order: 1
                        original_language: en
                        original_title: The Librarian from the Black Lagoon
                        overview: >-
                          based on the book of the same name, Hubie's class is
                          going to visit the library for the first time, and
                          rumor has it the library is a dark dungeon of rules
                          and misery. Presiding over the ghastly proceedings is
                          Mrs. Beamster, better known as: The Laminator. Hubie
                          is sure he's doomed...but when he actually gets to the
                          library, will things be as he expected?
                        popularity: 0.02
                        poster_path: /e8qWfW8Q0Sm5IIMi1rkserrjJrO.jpg
                        release_date: '2007-01-01'
                        title: The Librarian from the Black Lagoon
                        video: false
                        vote_average: 0
                        vote_count: 0
                    crew: []
                    id: 12
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````