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

# Movie Credit

> Get the movie credits for a person.



## OpenAPI

````yaml api-reference/openapi.json get /3/person/{{person_id}}/movie_credits
openapi: 3.0.3
info:
  title: Themoviedb API
  description: >-
    Version 3 (stable) of The Movie Database (TMDB) API offers a concise list of
    available methods for movies, TV shows, actors, and images.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
  - url: https://api.themoviedb.org/3
security: []
tags:
  - name: Account
  - name: Authentication
    description: >-
      # How do I generate a session id?


      As outlined in the [getting started
      guide](https://developer.themoviedb.org/docs/getting-started), the basics
      to getting a user authenticated look like this:


      1. **Create a new request token**  

      2. **Get the user to authorize the request token**  

      3. **Create a new session id with the authorized request token**  


      Steps 1 and 3 should be fairly easy to understand, but let's walk through
      each to ensure clarity.


      ## Step 1: Create a request token


      The first step as a developer is to request a new token. This is a
      **temporary token** required to ask the user for permission to access
      their account. This token will automatically expire **after 60 minutes**
      if it's not used.


      ## Step 2: Ask the user for permission


      With a request token in hand, forward your user to the following URL:


      ```

      https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}

      ```


      You can also pass this URL a `redirect_to` parameter, like so:


      ```

      https://www.themoviedb.org/authenticate/{REQUEST_TOKEN}?redirect_to=http://www.yourapp.com/approved

      ```


      Once the user has approved your request token, they will either be
      redirected to the URL you specified in the `redirect_to` parameter or to
      the `/authenticate/allow` path on TMDB. If they aren't redirected to a
      custom URL, the page will also include an `Authentication-Callback`
      header. This header contains the API call for step #3. You can either
      manually generate it or simply use the one we return.


      ## Step 3: Create a session ID


      By calling the **new session method** with the request token that has been
      approved by the user in Step 2, we will return a **new session_id**. This
      session can now be used to write user data. You should treat this key
      **like a password** and keep it secret.


      ## What about guest sessions?


      A **guest session** can be used to rate movies **without** requiring a
      registered TMDB user account. For more information about how to create a
      guest session, see
      [here](https://developer.themoviedb.org/docs/authentication).
  - name: Certification
  - name: Changes
  - name: Collections
  - name: Companies
  - name: Configuration
  - name: Credits
  - name: Discover
  - name: Find
  - name: Genres
  - name: Guest Session
  - name: Keywords
  - name: List
    description: >-
      ## v3 or v4 list? 😕


      You may have noticed that the a v4 version of our list API exists. While
      these v3 list methods continue to work, all of the new features you can
      see on our website are only available if you switch to the v4 lists.


      **What are some of the improvements in v4?**


      - You can import "unlimited" items in a single request
          
      - You can use mixed type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          
      - Check the v4 documentation for more information.
  - name: Movie Lists
  - name: Movies
  - name: Networks
  - name: People Lists
  - name: People
  - name: Reviews
  - name: Search
  - name: Trending
  - name: TV Series Lists
  - name: TV Series
  - name: TV Seasons
  - name: TV Episodes
  - name: TV Episode Groups
  - name: Watch Providers
paths:
  /3/person/{{person_id}}/movie_credits:
    parameters:
      - name: person_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - People
      summary: Movie Credit
      description: Get the movie credits for a person.
      operationId: movieCredit
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
      responses:
        '200':
          description: Credit
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=6585
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 02:03:50 GMT
            ETag:
              schema:
                type: string
                example: W/"2c0c844f0b031f76e71ac0e5ff51600c"
            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 ef1e6a56c85755f5099e202abc002990.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: GKF9dsbHCDeVgkuC1xx8ij_kMid5IK7FCe7Tdd6TmAD6uF9ntBY_-g==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '21402'
            x-memc-expires:
              schema:
                type: string
                example: '6585'
            x-memc-key:
              schema:
                type: string
                example: e8007a030e92d00d13acfeda30321a78
          content:
            application/json:
              schema:
                type: object
                properties:
                  cast:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        character:
                          type: string
                          example: Covered Cart Bar Customer (uncredited)
                        credit_id:
                          type: string
                          example: 52fe44099251416c75026c13
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 18
                          example:
                            - 18
                            - 35
                            - 10749
                        id:
                          type: number
                          example: 11178
                        order:
                          type: number
                          example: 11
                        original_language:
                          type: string
                          example: ko
                        original_title:
                          type: string
                          example: 엽기적인 그녀
                        overview:
                          type: string
                          example: >-
                            A dweeby, mild-mannered man comes to the aid of a
                            drunk young woman on a subway platform. Little does
                            he know how much trouble he’s in for.
                        popularity:
                          type: number
                          example: 15.542
                        poster_path:
                          type: string
                          example: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date:
                          type: string
                          example: '2001-07-27'
                        title:
                          type: string
                          example: My Sassy Girl
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.5
                        vote_count:
                          type: number
                          example: 569
                    example:
                      - adult: false
                        backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        character: Covered Cart Bar Customer (uncredited)
                        credit_id: 52fe44099251416c75026c13
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 11178
                        order: 11
                        original_language: ko
                        original_title: 엽기적인 그녀
                        overview: >-
                          A dweeby, mild-mannered man comes to the aid of a
                          drunk young woman on a subway platform. Little does he
                          know how much trouble he’s in for.
                        popularity: 15.542
                        poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date: '2001-07-27'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7.5
                        vote_count: 569
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        character: ''
                        credit_id: 61ad1944326c190062f5995c
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        order: 10
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        character: Korean Man in Restaurant
                        credit_id: 66bc84e9a92e8e9c1e9b50a5
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        order: 24
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                  crew:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          nullable: true
                          example: /xBC4oo8zlgVVBOPoVPV8L8UZDoQ.jpg
                        credit_id:
                          type: string
                          example: 52fe43269251416c75005791
                        department:
                          type: string
                          example: Writing
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 35
                          example:
                            - 35
                            - 10749
                            - 18
                        id:
                          type: number
                          example: 10103
                        job:
                          type: string
                          example: Author
                        original_language:
                          type: string
                          example: ko
                        original_title:
                          type: string
                          example: 내 여자친구를 소개합니다
                        overview:
                          type: string
                          example: >-
                            Kyung-jin, a police officer who finds herself
                            chasing down a suspected bag-snatcher on her day
                            off. However, the man she catches turns out to be
                            Myungwoo, a passer-by who was himself trying to
                            apprehend the real criminal.
                        popularity:
                          type: number
                          example: 12.68
                        poster_path:
                          type: string
                          example: /i1NsNVsJMVhwx3ncQ3C8vhZt3pr.jpg
                        release_date:
                          type: string
                          example: '2004-06-03'
                        title:
                          type: string
                          example: Windstruck
                        video:
                          type: boolean
                          example: false
                        vote_average:
                          type: number
                          example: 7.2
                        vote_count:
                          type: number
                          example: 141
                    example:
                      - adult: false
                        backdrop_path: /xBC4oo8zlgVVBOPoVPV8L8UZDoQ.jpg
                        credit_id: 52fe43269251416c75005791
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                          - 18
                        id: 10103
                        job: Author
                        original_language: ko
                        original_title: 내 여자친구를 소개합니다
                        overview: >-
                          Kyung-jin, a police officer who finds herself chasing
                          down a suspected bag-snatcher on her day off. However,
                          the man she catches turns out to be Myungwoo, a
                          passer-by who was himself trying to apprehend the real
                          criminal.
                        popularity: 12.68
                        poster_path: /i1NsNVsJMVhwx3ncQ3C8vhZt3pr.jpg
                        release_date: '2004-06-03'
                        title: Windstruck
                        video: false
                        vote_average: 7.2
                        vote_count: 141
                      - adult: false
                        backdrop_path: /xBC4oo8zlgVVBOPoVPV8L8UZDoQ.jpg
                        credit_id: 52fe43269251416c75005797
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                          - 18
                        id: 10103
                        job: Director
                        original_language: ko
                        original_title: 내 여자친구를 소개합니다
                        overview: >-
                          Kyung-jin, a police officer who finds herself chasing
                          down a suspected bag-snatcher on her day off. However,
                          the man she catches turns out to be Myungwoo, a
                          passer-by who was himself trying to apprehend the real
                          criminal.
                        popularity: 12.68
                        poster_path: /i1NsNVsJMVhwx3ncQ3C8vhZt3pr.jpg
                        release_date: '2004-06-03'
                        title: Windstruck
                        video: false
                        vote_average: 7.2
                        vote_count: 141
                      - adult: false
                        backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        credit_id: 52fe44099251416c75026bc7
                        department: Directing
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 11178
                        job: Director
                        original_language: ko
                        original_title: 엽기적인 그녀
                        overview: >-
                          A dweeby, mild-mannered man comes to the aid of a
                          drunk young woman on a subway platform. Little does he
                          know how much trouble he’s in for.
                        popularity: 15.542
                        poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date: '2001-07-27'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7.5
                        vote_count: 569
                      - adult: false
                        backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        credit_id: 52fe44099251416c75026bd3
                        department: Writing
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 11178
                        job: Screenplay
                        original_language: ko
                        original_title: 엽기적인 그녀
                        overview: >-
                          A dweeby, mild-mannered man comes to the aid of a
                          drunk young woman on a subway platform. Little does he
                          know how much trouble he’s in for.
                        popularity: 15.542
                        poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date: '2001-07-27'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7.5
                        vote_count: 569
                      - adult: false
                        backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                        credit_id: 60815174f9253200435b6a01
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                        id: 821661
                        job: Director
                        original_language: ko
                        original_title: 해피 뉴 이어
                        overview: >-
                          A romantic comedy of a young man and woman that is
                          told in the background of hotel 'Emross'. It has
                          stories of people who met each other at Hotel Emross
                          during the New Year holidays. Each one has his own
                          memory to relate and create relationships or just
                          going nostalgic.
                        popularity: 11.076
                        poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                        release_date: '2021-12-29'
                        title: A Year-End Medley
                        video: false
                        vote_average: 7.1
                        vote_count: 142
                      - adult: false
                        backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                        credit_id: 52fe45f3c3a36847f80e3ce9
                        department: Directing
                        genre_ids:
                          - 18
                          - 10749
                        id: 42190
                        job: Director
                        original_language: ko
                        original_title: 클래식
                        overview: >-
                          Ji-hae's friend is having problems expressing her
                          feelings to the boy she loves, so she asks Ji-hae to
                          write e-mails to him in her name. As the boy falls in
                          love with her letters, Ji-hae discovers the story of
                          her mother's romance which is remarkably similar to
                          her own circumstances.
                        popularity: 14.276
                        poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                        release_date: '2003-01-30'
                        title: The Classic
                        video: false
                        vote_average: 7.6
                        vote_count: 158
                      - adult: false
                        backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                        credit_id: 52fe45f3c3a36847f80e3cef
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                        id: 42190
                        job: Writer
                        original_language: ko
                        original_title: 클래식
                        overview: >-
                          Ji-hae's friend is having problems expressing her
                          feelings to the boy she loves, so she asks Ji-hae to
                          write e-mails to him in her name. As the boy falls in
                          love with her letters, Ji-hae discovers the story of
                          her mother's romance which is remarkably similar to
                          her own circumstances.
                        popularity: 14.276
                        poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                        release_date: '2003-01-30'
                        title: The Classic
                        video: false
                        vote_average: 7.6
                        vote_count: 158
                      - adult: false
                        backdrop_path: /4NTM2UfehhQueBQd06DCzzHMW5i.jpg
                        credit_id: 52fe477b9251416c7509b00f
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                          - 28
                        id: 18426
                        job: Writer
                        original_language: ko
                        original_title: 데이지
                        overview: >-
                          A painter in Amsterdam receives flowers from a
                          mysterious admirer, while a hitman and cop find
                          themselves in conflict.
                        popularity: 9.672
                        poster_path: /twmYZWjyrHm0fhJnPxHcC4XtrA3.jpg
                        release_date: '2006-03-09'
                        title: Daisy
                        video: false
                        vote_average: 7.1
                        vote_count: 91
                      - adult: false
                        backdrop_path: /8iDWLZwmomWHzpqI9oC9IYA19r8.jpg
                        credit_id: 52fe47da9251416c750a7921
                        department: Directing
                        genre_ids:
                          - 28
                          - 35
                          - 10749
                          - 878
                        id: 19486
                        job: Director
                        original_language: ja
                        original_title: 僕の彼女はサイボーグ
                        overview: >-
                          A lonely university student develops a romance with a
                          beautiful interesting woman, who turns out to be a
                          cyborg from the future.
                        popularity: 8.086
                        poster_path: /kt2wjQjJqTh15IRirPOBByFVAEe.jpg
                        release_date: '2008-05-31'
                        title: Cyborg She
                        video: false
                        vote_average: 7.3
                        vote_count: 132
                      - adult: false
                        backdrop_path: /1TYQW1GEKUvhAU1742RbJRiJZpL.jpg
                        credit_id: 52fe47e69251416c750a9375
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                        id: 19627
                        job: Director
                        original_language: ko
                        original_title: 무림여대생
                        overview: >-
                          So-hwi is a martial arts prodigy and college student.
                          Realizing that her superhuman strength is holding back
                          her love life, she decides to quit martial arts to
                          pursue handsome hockey player Joon-mo. But Joon-mo is
                          in love with an older woman, and when So-hwi's
                          mystical martial arts community comes under threat
                          from an old enemy, Heuk-bong, her childhood friend
                          Il-yeong must persuade her to return.
                        popularity: 2.616
                        poster_path: /mFpZjurGhtvBa1Jyzfw58Me7ZQ6.jpg
                        release_date: '2008-06-26'
                        title: My Mighty Princess
                        video: false
                        vote_average: 6.6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /1TYQW1GEKUvhAU1742RbJRiJZpL.jpg
                        credit_id: 52fe47e69251416c750a937b
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 19627
                        job: Writer
                        original_language: ko
                        original_title: 무림여대생
                        overview: >-
                          So-hwi is a martial arts prodigy and college student.
                          Realizing that her superhuman strength is holding back
                          her love life, she decides to quit martial arts to
                          pursue handsome hockey player Joon-mo. But Joon-mo is
                          in love with an older woman, and when So-hwi's
                          mystical martial arts community comes under threat
                          from an old enemy, Heuk-bong, her childhood friend
                          Il-yeong must persuade her to return.
                        popularity: 2.616
                        poster_path: /mFpZjurGhtvBa1Jyzfw58Me7ZQ6.jpg
                        release_date: '2008-06-26'
                        title: My Mighty Princess
                        video: false
                        vote_average: 6.6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /rlwKkU1YB7ZlWBzZkHkka9N3n9x.jpg
                        credit_id: 62c5230cd71fb4005f214867
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 403128
                        job: Writer
                        original_language: ko
                        original_title: 피아노 치는 대통령
                        overview: >-
                          A gum-popping student wearing a very short uniform and
                          a weird hair-do is looking for 'zzang', the school
                          boss. She turns out to be the new teacher, Choi
                          Eun-Soo, who was trying to get a grasp of situation in
                          the classroom. Eun-Soo has been sacked from numerous
                          schools due to her eccentricity and too-strong
                          dedication to teaching. She finally meets her match in
                          Young-Hee, the troublemaker in her class. Unable to
                          deal with Young-Hee who lives to rebel, Eun-Soo
                          finally decides to call her parents.  Yes, Young-hee
                          turns out to be the First Daughter, who is being
                          raised by Han Min-Wook, the popular president with his
                          good looks and integrity. But Eun-Soo is not deterred
                          by the title. She summons the President to school,
                          scolds him, and makes him copy down 'Hwangjoga' 100
                          times in stead of his daughter.  This is the beginning
                          of the battle between Eun-Soo and Min-Wook, the
                          president and also a parent.
                        popularity: 1.464
                        poster_path: /hgyM1jRpiEpUlwtsgfkQS5yvlDS.jpg
                        release_date: '2002-12-06'
                        title: The Romantic President
                        video: false
                        vote_average: 5.3
                        vote_count: 3
                      - adult: false
                        backdrop_path: /v9uzK7PWsXwp34y9YZ6AfRXeyLc.jpg
                        credit_id: 5451e4700e0a2601d8005cfc
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                        id: 299826
                        job: Director
                        original_language: zh
                        original_title: 我的早更女友
                        overview: >-
                          Fresh off a recent break-up, a woman catches an early
                          menopause, but manages to heal herself mentally and
                          physically through a new love.
                        popularity: 2.408
                        poster_path: /vVYyvSUQEPwzYSTSrbqPZodMY7t.jpg
                        release_date: '2014-12-05'
                        title: Meet Miss Anxiety
                        video: false
                        vote_average: 5
                        vote_count: 7
                      - adult: false
                        backdrop_path: /wACHOwiQmTw0EylrLmxhnkrSuX3.jpg
                        credit_id: 61867639cb6db50042c1cbe9
                        department: Writing
                        genre_ids:
                          - 18
                          - 53
                          - 9648
                          - 10749
                        id: 67025
                        job: Writer
                        original_language: ko
                        original_title: 중독
                        overview: >-
                          Two brothers get into a sudden tragic accident and
                          they both fall into a coma at the same time. A year
                          later, the younger brother Dae-jin wakes up believing
                          he is his older brother Ho-jin.
                        popularity: 5.923
                        poster_path: /znBcfFX8BjFDCDwiW5MrKqXPKhT.jpg
                        release_date: '2002-10-25'
                        title: Addicted
                        video: false
                        vote_average: 6.3
                        vote_count: 18
                      - adult: false
                        backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                        credit_id: 61dab728af43240043809ea4
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 821661
                        job: Adaptation
                        original_language: ko
                        original_title: 해피 뉴 이어
                        overview: >-
                          A romantic comedy of a young man and woman that is
                          told in the background of hotel 'Emross'. It has
                          stories of people who met each other at Hotel Emross
                          during the New Year holidays. Each one has his own
                          memory to relate and create relationships or just
                          going nostalgic.
                        popularity: 11.076
                        poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                        release_date: '2021-12-29'
                        title: A Year-End Medley
                        video: false
                        vote_average: 7.1
                        vote_count: 142
                      - adult: false
                        backdrop_path: null
                        credit_id: 56719fdcc3a368535a018697
                        department: Directing
                        genre_ids:
                          - 18
                          - 10749
                        id: 372600
                        job: Director
                        original_language: ko
                        original_title: 가을여행
                        overview: >-
                          It revolves around a journey of five people went on
                          different paths to discover their wounds.
                        popularity: 0.213
                        poster_path: /ep1CwG7ZcBYnDSoe6EN7Zwr5EYg.jpg
                        release_date: '1991-02-09'
                        title: Autumn Journey
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        credit_id: 56719fea9251415ec5015dfa
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                        id: 372600
                        job: Writer
                        original_language: ko
                        original_title: 가을여행
                        overview: >-
                          It revolves around a journey of five people went on
                          different paths to discover their wounds.
                        popularity: 0.213
                        poster_path: /ep1CwG7ZcBYnDSoe6EN7Zwr5EYg.jpg
                        release_date: '1991-02-09'
                        title: Autumn Journey
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /5mTHMygeAm96hKuELNRgkkfFtXu.jpg
                        credit_id: 56db3d28c3a3684ca6002c30
                        department: Directing
                        genre_ids:
                          - 18
                          - 10749
                          - 53
                          - 14
                        id: 385962
                        job: Director
                        original_language: ko
                        original_title: 시간이탈자
                        overview: >-
                          A high-school teacher in 1983 and a detective in 2015
                          join forces through their dreams to change the
                          perilous fate of the woman they both love—30 years
                          apart.
                        popularity: 4.762
                        poster_path: /enNzmbscuisQVAev4vj7muDwtNq.jpg
                        release_date: '2016-04-13'
                        title: Time Renegades
                        video: false
                        vote_average: 6.99
                        vote_count: 52
                      - adult: false
                        backdrop_path: /8t2M7JRUp4ErqUyFlmMjpONH7oZ.jpg
                        credit_id: 5813e262c3a368798d0245b8
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 14197
                        job: Original Story
                        original_language: en
                        original_title: My Sassy Girl
                        overview: >-
                          A guy has his life planned out until he is wooed,
                          groomed and then dumped by an elusive woman.
                        popularity: 14.751
                        poster_path: /2et1Cqn1UMax63jSGBNAtt7LCGO.jpg
                        release_date: '2008-05-26'
                        title: My Sassy Girl
                        video: false
                        vote_average: 6.7
                        vote_count: 371
                      - adult: false
                        backdrop_path: /2y6LerjQlte7fB9M5OxnPLMAGN2.jpg
                        credit_id: 5884596ac3a3684ec60154f9
                        department: Production
                        genre_ids:
                          - 35
                          - 10749
                        id: 428865
                        job: Producer
                        original_language: zh
                        original_title: 情敌蜜月
                        overview: >-
                          The boss and employee of a matchmaking website pretend
                          to be lovers in order to save the company and regain
                          their significant others.
                        popularity: 0.627
                        poster_path: /8MOdfMBFTYQYbNcPcJgMgoY16Ua.jpg
                        release_date: '2015-09-02'
                        title: The Honey Enemy
                        video: false
                        vote_average: 3
                        vote_count: 1
                      - adult: false
                        backdrop_path: null
                        credit_id: 58c7190ec3a3683dbd0013e4
                        department: Directing
                        genre_ids: []
                        id: 349705
                        job: Director
                        original_language: ko
                        original_title: 비 오는 날 수채화 2
                        overview: >-
                          Ji-su is finally released from jail and reunites with
                          his stepsister Ji-hyeon. However his father had dark
                          secret that neither of them knew before; both Ji-su
                          and Ji-hyeon are half-siblings.
                        popularity: 1.306
                        poster_path: /aPACZ0PsHZHjCkyWefT46yMMoIr.jpg
                        release_date: '1993-09-25'
                        title: Watercolors in Rain 2
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        credit_id: 58c7191dc3a3683df30014d8
                        department: Writing
                        genre_ids: []
                        id: 349705
                        job: Writer
                        original_language: ko
                        original_title: 비 오는 날 수채화 2
                        overview: >-
                          Ji-su is finally released from jail and reunites with
                          his stepsister Ji-hyeon. However his father had dark
                          secret that neither of them knew before; both Ji-su
                          and Ji-hyeon are half-siblings.
                        popularity: 1.306
                        poster_path: /aPACZ0PsHZHjCkyWefT46yMMoIr.jpg
                        release_date: '1993-09-25'
                        title: Watercolors in Rain 2
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /tihsWgMpHo3MTLwOC5RkEStxrXC.jpg
                        credit_id: 58c721e392514179de001a40
                        department: Directing
                        genre_ids: []
                        id: 350433
                        job: Director
                        original_language: ko
                        original_title: 비 오는 날 수채화
                        overview: >-
                          The story of Ji-su who life was torn by two women in
                          his life. One of them is his step-sister and the other
                          is a barroom dancer named Kyung-ja.
                        popularity: 1.226
                        poster_path: /nX8BSwxaXCQgMV7tDFQ3M2vzPw2.jpg
                        release_date: '1990-02-17'
                        title: Watercolors in Rain
                        video: false
                        vote_average: 5
                        vote_count: 1
                      - adult: false
                        backdrop_path: /tihsWgMpHo3MTLwOC5RkEStxrXC.jpg
                        credit_id: 58c722199251417a230019d3
                        department: Writing
                        genre_ids: []
                        id: 350433
                        job: Writer
                        original_language: ko
                        original_title: 비 오는 날 수채화
                        overview: >-
                          The story of Ji-su who life was torn by two women in
                          his life. One of them is his step-sister and the other
                          is a barroom dancer named Kyung-ja.
                        popularity: 1.226
                        poster_path: /nX8BSwxaXCQgMV7tDFQ3M2vzPw2.jpg
                        release_date: '1990-02-17'
                        title: Watercolors in Rain
                        video: false
                        vote_average: 5
                        vote_count: 1
                      - adult: false
                        backdrop_path: /9EBSA407j5zu3FjhqnwcJL6rYlJ.jpg
                        credit_id: 595e607ac3a3680dec05f717
                        department: Directing
                        genre_ids:
                          - 10749
                          - 18
                        id: 464911
                        job: Director
                        original_language: ja
                        original_title: 風の色
                        overview: >-
                          Yuri leaves Ryo with mysterious words. Ryo goes to
                          Hokkaido knowing that his doppelganger magician is
                          missing. Ryo realizes Yuri was also the magician’s
                          lover and he learns magic. The story that crosses over
                          two identities, illusion and magic.
                        popularity: 2.92
                        poster_path: /glNsZnAgNiHOsZnfXqnTMQrGMw1.jpg
                        release_date: '2018-01-26'
                        title: Colors of Wind
                        video: false
                        vote_average: 7.7
                        vote_count: 27
                      - adult: false
                        backdrop_path: /sk8ij1IJhznRYEAy37QluLk92Ao.jpg
                        credit_id: 664c7a928ee7f81e2d931789
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                        id: 664511
                        job: Original Film Writer
                        original_language: th
                        original_title: จดหมาย สายฝน ร่มวิเศษ
                        overview: >-
                          In a love triangle that miraculously mirrors her
                          mother's romance years ago, a young woman let's her
                          heart lead.
                        popularity: 9.836
                        poster_path: /ni6RW4XucHai4D0nrk0ivGYPXDk.jpg
                        release_date: '2020-02-06'
                        title: Classic Again
                        video: false
                        vote_average: 6.8
                        vote_count: 9
                      - adult: false
                        backdrop_path: null
                        credit_id: 5a81fc3d0e0a267f3b00496a
                        department: Directing
                        genre_ids:
                          - 10749
                        id: 432278
                        job: Director
                        original_language: zh
                        original_title: 在世界中心呼唤爱
                        overview: >-
                          Chinese romance film directed and co-written by Kwak
                          Jae-yong, starring Oho Ou, Zhang Huiwen, Yang Zi, Wang
                          Zhi, and Yao Lu. The film is an adaptation of Kyoichi
                          Katayama's 2004 novel Socrates in Love. Crying Out In
                          Love was released by Beijing Enlight Pictures on 26
                          August 2016
                        popularity: 1.747
                        poster_path: /yFc3EXeI5651Nmv8d5zqz7Bi0x9.jpg
                        release_date: '2016-08-26'
                        title: Crying Out In Love
                        video: false
                        vote_average: 5.3
                        vote_count: 3
                      - adult: false
                        backdrop_path: /t9v4ei7BA3QdohzUDq5RJv3oHmS.jpg
                        credit_id: 66761a29d521ef2cbceedf40
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                          - 18
                        id: 788035
                        job: Original Film Writer
                        original_language: tl
                        original_title: My Sassy Girl
                        overview: >-
                          The film tells the love story of Junjee, and Sheena.
                          Junjee just cannot seem to catch a romantic break.
                          Their personalities stand opposite to the
                          characteristics traditionally associated with
                          masculinity and femininity in Asian societies in
                          general.
                        popularity: 0.742
                        poster_path: /hdrJvKIvFtDzwLNBAlujgKJgfBD.jpg
                        release_date: '2024-01-31'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7
                        vote_count: 1
                      - adult: false
                        backdrop_path: /3WLkhfbE0AGks7GlNTBjKe9uyRf.jpg
                        credit_id: 66761a5b4ac66183a277e3fd
                        department: Writing
                        genre_ids:
                          - 35
                          - 18
                          - 10749
                        id: 894693
                        job: Original Film Writer
                        original_language: id
                        original_title: My Sassy Girl
                        overview: >-
                          Gian, a young man saves Sisy, a woman who makes drunk,
                          depressed and wants to kill herself at a train station
                          at night. Their love story started from this.
                        popularity: 3.33
                        poster_path: /khenn7JJ9vxF34i3xqXIpDWI1aO.jpg
                        release_date: '2022-06-23'
                        title: My Sassy Girl
                        video: false
                        vote_average: 6.4
                        vote_count: 5
                      - adult: false
                        backdrop_path: /gvNHGmwAvXtuNZg3BNcl1SdyIGD.jpg
                        credit_id: 66761a775b2dc52ddf9aa8fe
                        department: Writing
                        genre_ids:
                          - 35
                          - 28
                          - 10749
                        id: 813170
                        job: Original Film Writer
                        original_language: zh
                        original_title: 我的野蛮女掌门
                        overview: ''
                        popularity: 2.302
                        poster_path: /pf4xk1kPFpyG58HubBv4xK2F89l.jpg
                        release_date: '2021-03-31'
                        title: My Sassy Girl
                        video: false
                        vote_average: 5
                        vote_count: 1
                      - adult: false
                        backdrop_path: null
                        credit_id: 66761a9ea9907ad3e79fdd57
                        department: Writing
                        genre_ids:
                          - 10749
                          - 35
                        id: 51798
                        job: Original Film Writer
                        original_language: zh
                        original_title: My Sassy Girl 2
                        overview: >-
                          This sequel/cash-in to the popular 2001 Korean rom-com
                          apparently picks up the story where the last film left
                          off with actress Lynn Xiong replacing Jun Ji-hyun in
                          the leading role.
                        popularity: 1.572
                        poster_path: /171uTEYbBuCoFjRVtvQMdUdfhQ7.jpg
                        release_date: '2010-11-05'
                        title: My Sassy Girl 2
                        video: false
                        vote_average: 2.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /eDZAjMDhsBSzXFJS2uK7LAuf3RS.jpg
                        credit_id: 66762088bfdae4e8c934cc55
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 538275
                        job: Original Film Writer
                        original_language: vi
                        original_title: Yêu Em Bất Chấp
                        overview: ''
                        popularity: 0.287
                        poster_path: /jlnLvBTD4NnN4T4Nmgj5bVmk8Eg.jpg
                        release_date: '2018-04-06'
                        title: Yêu Em Bất Chấp
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /8iDWLZwmomWHzpqI9oC9IYA19r8.jpg
                        credit_id: 669bff5bc5e20d62a8182063
                        department: Writing
                        genre_ids:
                          - 28
                          - 35
                          - 10749
                          - 878
                        id: 19486
                        job: Screenplay
                        original_language: ja
                        original_title: 僕の彼女はサイボーグ
                        overview: >-
                          A lonely university student develops a romance with a
                          beautiful interesting woman, who turns out to be a
                          cyborg from the future.
                        popularity: 8.086
                        poster_path: /kt2wjQjJqTh15IRirPOBByFVAEe.jpg
                        release_date: '2008-05-31'
                        title: Cyborg She
                        video: false
                        vote_average: 7.3
                        vote_count: 132
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        credit_id: 66bc8338efa268dff1e991cf
                        department: Writing
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        job: Screenplay
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        credit_id: 66bc834ea14c7df7dae1dfdf
                        department: Writing
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        job: Story
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                      - adult: false
                        backdrop_path: /9EBSA407j5zu3FjhqnwcJL6rYlJ.jpg
                        credit_id: 5cdbcf2f925141767ece0e5f
                        department: Writing
                        genre_ids:
                          - 10749
                          - 18
                        id: 464911
                        job: Writer
                        original_language: ja
                        original_title: 風の色
                        overview: >-
                          Yuri leaves Ryo with mysterious words. Ryo goes to
                          Hokkaido knowing that his doppelganger magician is
                          missing. Ryo realizes Yuri was also the magician’s
                          lover and he learns magic. The story that crosses over
                          two identities, illusion and magic.
                        popularity: 2.92
                        poster_path: /glNsZnAgNiHOsZnfXqnTMQrGMw1.jpg
                        release_date: '2018-01-26'
                        title: Colors of Wind
                        video: false
                        vote_average: 7.7
                        vote_count: 27
                      - adult: false
                        backdrop_path: /pUq74SgliWDXEe8kGTGka8ifI0d.jpg
                        credit_id: 5cdbcfc6c3a3684a97c84a87
                        department: Production
                        genre_ids:
                          - 18
                        id: 72245
                        job: Producer
                        original_language: zh
                        original_title: 钢的琴
                        overview: >-
                          To fight for custody of his daughter who loves playing
                          the piano, a steel factory worker decides to forge a
                          piano from scratch.
                        popularity: 4.627
                        poster_path: /vI4ggulcfZxko9S2dLdmKMOiB4h.jpg
                        release_date: '2011-07-15'
                        title: The Piano in a Factory
                        video: false
                        vote_average: 7.1
                        vote_count: 49
                      - adult: false
                        backdrop_path: /5mTHMygeAm96hKuELNRgkkfFtXu.jpg
                        credit_id: 5cdbd0110e0a26045cd01d81
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                          - 53
                          - 14
                        id: 385962
                        job: Adaptation
                        original_language: ko
                        original_title: 시간이탈자
                        overview: >-
                          A high-school teacher in 1983 and a detective in 2015
                          join forces through their dreams to change the
                          perilous fate of the woman they both love—30 years
                          apart.
                        popularity: 4.762
                        poster_path: /enNzmbscuisQVAev4vj7muDwtNq.jpg
                        release_date: '2016-04-13'
                        title: Time Renegades
                        video: false
                        vote_average: 6.99
                        vote_count: 52
                      - adult: false
                        backdrop_path: null
                        credit_id: 66e305eb28048d92def907bb
                        department: Directing
                        genre_ids: []
                        id: 1355800
                        job: Director
                        original_language: ko
                        original_title: '3인 3색 러브스토리: 사랑즐감'
                        overview: ''
                        popularity: 0.981
                        poster_path: /2K1nzdHiaClcPammqgqDVEunMwn.jpg
                        release_date: '2005-01-01'
                        title: '3인 3색 러브스토리: 사랑즐감'
                        video: false
                        vote_average: 0
                        vote_count: 0
                  id:
                    type: number
                    example: 63429
              examples:
                Credit:
                  value:
                    cast:
                      - adult: false
                        backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        character: Covered Cart Bar Customer (uncredited)
                        credit_id: 52fe44099251416c75026c13
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 11178
                        order: 11
                        original_language: ko
                        original_title: 엽기적인 그녀
                        overview: >-
                          A dweeby, mild-mannered man comes to the aid of a
                          drunk young woman on a subway platform. Little does he
                          know how much trouble he’s in for.
                        popularity: 15.542
                        poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date: '2001-07-27'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7.5
                        vote_count: 569
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        character: ''
                        credit_id: 61ad1944326c190062f5995c
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        order: 10
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        character: Korean Man in Restaurant
                        credit_id: 66bc84e9a92e8e9c1e9b50a5
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        order: 24
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                    crew:
                      - adult: false
                        backdrop_path: /xBC4oo8zlgVVBOPoVPV8L8UZDoQ.jpg
                        credit_id: 52fe43269251416c75005791
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                          - 18
                        id: 10103
                        job: Author
                        original_language: ko
                        original_title: 내 여자친구를 소개합니다
                        overview: >-
                          Kyung-jin, a police officer who finds herself chasing
                          down a suspected bag-snatcher on her day off. However,
                          the man she catches turns out to be Myungwoo, a
                          passer-by who was himself trying to apprehend the real
                          criminal.
                        popularity: 12.68
                        poster_path: /i1NsNVsJMVhwx3ncQ3C8vhZt3pr.jpg
                        release_date: '2004-06-03'
                        title: Windstruck
                        video: false
                        vote_average: 7.2
                        vote_count: 141
                      - adult: false
                        backdrop_path: /xBC4oo8zlgVVBOPoVPV8L8UZDoQ.jpg
                        credit_id: 52fe43269251416c75005797
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                          - 18
                        id: 10103
                        job: Director
                        original_language: ko
                        original_title: 내 여자친구를 소개합니다
                        overview: >-
                          Kyung-jin, a police officer who finds herself chasing
                          down a suspected bag-snatcher on her day off. However,
                          the man she catches turns out to be Myungwoo, a
                          passer-by who was himself trying to apprehend the real
                          criminal.
                        popularity: 12.68
                        poster_path: /i1NsNVsJMVhwx3ncQ3C8vhZt3pr.jpg
                        release_date: '2004-06-03'
                        title: Windstruck
                        video: false
                        vote_average: 7.2
                        vote_count: 141
                      - adult: false
                        backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        credit_id: 52fe44099251416c75026bc7
                        department: Directing
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 11178
                        job: Director
                        original_language: ko
                        original_title: 엽기적인 그녀
                        overview: >-
                          A dweeby, mild-mannered man comes to the aid of a
                          drunk young woman on a subway platform. Little does he
                          know how much trouble he’s in for.
                        popularity: 15.542
                        poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date: '2001-07-27'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7.5
                        vote_count: 569
                      - adult: false
                        backdrop_path: /13uKAt4M87HQi1lMZAwBmsNZRGg.jpg
                        credit_id: 52fe44099251416c75026bd3
                        department: Writing
                        genre_ids:
                          - 18
                          - 35
                          - 10749
                        id: 11178
                        job: Screenplay
                        original_language: ko
                        original_title: 엽기적인 그녀
                        overview: >-
                          A dweeby, mild-mannered man comes to the aid of a
                          drunk young woman on a subway platform. Little does he
                          know how much trouble he’s in for.
                        popularity: 15.542
                        poster_path: /qx4hZvSy2b11KIPBHBFEibgRbk0.jpg
                        release_date: '2001-07-27'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7.5
                        vote_count: 569
                      - adult: false
                        backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                        credit_id: 60815174f9253200435b6a01
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                        id: 821661
                        job: Director
                        original_language: ko
                        original_title: 해피 뉴 이어
                        overview: >-
                          A romantic comedy of a young man and woman that is
                          told in the background of hotel 'Emross'. It has
                          stories of people who met each other at Hotel Emross
                          during the New Year holidays. Each one has his own
                          memory to relate and create relationships or just
                          going nostalgic.
                        popularity: 11.076
                        poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                        release_date: '2021-12-29'
                        title: A Year-End Medley
                        video: false
                        vote_average: 7.1
                        vote_count: 142
                      - adult: false
                        backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                        credit_id: 52fe45f3c3a36847f80e3ce9
                        department: Directing
                        genre_ids:
                          - 18
                          - 10749
                        id: 42190
                        job: Director
                        original_language: ko
                        original_title: 클래식
                        overview: >-
                          Ji-hae's friend is having problems expressing her
                          feelings to the boy she loves, so she asks Ji-hae to
                          write e-mails to him in her name. As the boy falls in
                          love with her letters, Ji-hae discovers the story of
                          her mother's romance which is remarkably similar to
                          her own circumstances.
                        popularity: 14.276
                        poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                        release_date: '2003-01-30'
                        title: The Classic
                        video: false
                        vote_average: 7.6
                        vote_count: 158
                      - adult: false
                        backdrop_path: /aUskYggZkaoU2BhvIaRF1QehNdj.jpg
                        credit_id: 52fe45f3c3a36847f80e3cef
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                        id: 42190
                        job: Writer
                        original_language: ko
                        original_title: 클래식
                        overview: >-
                          Ji-hae's friend is having problems expressing her
                          feelings to the boy she loves, so she asks Ji-hae to
                          write e-mails to him in her name. As the boy falls in
                          love with her letters, Ji-hae discovers the story of
                          her mother's romance which is remarkably similar to
                          her own circumstances.
                        popularity: 14.276
                        poster_path: /sNe23Tsia9usMBN5TW2KXPJdq2K.jpg
                        release_date: '2003-01-30'
                        title: The Classic
                        video: false
                        vote_average: 7.6
                        vote_count: 158
                      - adult: false
                        backdrop_path: /4NTM2UfehhQueBQd06DCzzHMW5i.jpg
                        credit_id: 52fe477b9251416c7509b00f
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                          - 28
                        id: 18426
                        job: Writer
                        original_language: ko
                        original_title: 데이지
                        overview: >-
                          A painter in Amsterdam receives flowers from a
                          mysterious admirer, while a hitman and cop find
                          themselves in conflict.
                        popularity: 9.672
                        poster_path: /twmYZWjyrHm0fhJnPxHcC4XtrA3.jpg
                        release_date: '2006-03-09'
                        title: Daisy
                        video: false
                        vote_average: 7.1
                        vote_count: 91
                      - adult: false
                        backdrop_path: /8iDWLZwmomWHzpqI9oC9IYA19r8.jpg
                        credit_id: 52fe47da9251416c750a7921
                        department: Directing
                        genre_ids:
                          - 28
                          - 35
                          - 10749
                          - 878
                        id: 19486
                        job: Director
                        original_language: ja
                        original_title: 僕の彼女はサイボーグ
                        overview: >-
                          A lonely university student develops a romance with a
                          beautiful interesting woman, who turns out to be a
                          cyborg from the future.
                        popularity: 8.086
                        poster_path: /kt2wjQjJqTh15IRirPOBByFVAEe.jpg
                        release_date: '2008-05-31'
                        title: Cyborg She
                        video: false
                        vote_average: 7.3
                        vote_count: 132
                      - adult: false
                        backdrop_path: /1TYQW1GEKUvhAU1742RbJRiJZpL.jpg
                        credit_id: 52fe47e69251416c750a9375
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                        id: 19627
                        job: Director
                        original_language: ko
                        original_title: 무림여대생
                        overview: >-
                          So-hwi is a martial arts prodigy and college student.
                          Realizing that her superhuman strength is holding back
                          her love life, she decides to quit martial arts to
                          pursue handsome hockey player Joon-mo. But Joon-mo is
                          in love with an older woman, and when So-hwi's
                          mystical martial arts community comes under threat
                          from an old enemy, Heuk-bong, her childhood friend
                          Il-yeong must persuade her to return.
                        popularity: 2.616
                        poster_path: /mFpZjurGhtvBa1Jyzfw58Me7ZQ6.jpg
                        release_date: '2008-06-26'
                        title: My Mighty Princess
                        video: false
                        vote_average: 6.6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /1TYQW1GEKUvhAU1742RbJRiJZpL.jpg
                        credit_id: 52fe47e69251416c750a937b
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 19627
                        job: Writer
                        original_language: ko
                        original_title: 무림여대생
                        overview: >-
                          So-hwi is a martial arts prodigy and college student.
                          Realizing that her superhuman strength is holding back
                          her love life, she decides to quit martial arts to
                          pursue handsome hockey player Joon-mo. But Joon-mo is
                          in love with an older woman, and when So-hwi's
                          mystical martial arts community comes under threat
                          from an old enemy, Heuk-bong, her childhood friend
                          Il-yeong must persuade her to return.
                        popularity: 2.616
                        poster_path: /mFpZjurGhtvBa1Jyzfw58Me7ZQ6.jpg
                        release_date: '2008-06-26'
                        title: My Mighty Princess
                        video: false
                        vote_average: 6.6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /rlwKkU1YB7ZlWBzZkHkka9N3n9x.jpg
                        credit_id: 62c5230cd71fb4005f214867
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 403128
                        job: Writer
                        original_language: ko
                        original_title: 피아노 치는 대통령
                        overview: >-
                          A gum-popping student wearing a very short uniform and
                          a weird hair-do is looking for 'zzang', the school
                          boss. She turns out to be the new teacher, Choi
                          Eun-Soo, who was trying to get a grasp of situation in
                          the classroom. Eun-Soo has been sacked from numerous
                          schools due to her eccentricity and too-strong
                          dedication to teaching. She finally meets her match in
                          Young-Hee, the troublemaker in her class. Unable to
                          deal with Young-Hee who lives to rebel, Eun-Soo
                          finally decides to call her parents.  Yes, Young-hee
                          turns out to be the First Daughter, who is being
                          raised by Han Min-Wook, the popular president with his
                          good looks and integrity. But Eun-Soo is not deterred
                          by the title. She summons the President to school,
                          scolds him, and makes him copy down 'Hwangjoga' 100
                          times in stead of his daughter.  This is the beginning
                          of the battle between Eun-Soo and Min-Wook, the
                          president and also a parent.
                        popularity: 1.464
                        poster_path: /hgyM1jRpiEpUlwtsgfkQS5yvlDS.jpg
                        release_date: '2002-12-06'
                        title: The Romantic President
                        video: false
                        vote_average: 5.3
                        vote_count: 3
                      - adult: false
                        backdrop_path: /v9uzK7PWsXwp34y9YZ6AfRXeyLc.jpg
                        credit_id: 5451e4700e0a2601d8005cfc
                        department: Directing
                        genre_ids:
                          - 35
                          - 10749
                        id: 299826
                        job: Director
                        original_language: zh
                        original_title: 我的早更女友
                        overview: >-
                          Fresh off a recent break-up, a woman catches an early
                          menopause, but manages to heal herself mentally and
                          physically through a new love.
                        popularity: 2.408
                        poster_path: /vVYyvSUQEPwzYSTSrbqPZodMY7t.jpg
                        release_date: '2014-12-05'
                        title: Meet Miss Anxiety
                        video: false
                        vote_average: 5
                        vote_count: 7
                      - adult: false
                        backdrop_path: /wACHOwiQmTw0EylrLmxhnkrSuX3.jpg
                        credit_id: 61867639cb6db50042c1cbe9
                        department: Writing
                        genre_ids:
                          - 18
                          - 53
                          - 9648
                          - 10749
                        id: 67025
                        job: Writer
                        original_language: ko
                        original_title: 중독
                        overview: >-
                          Two brothers get into a sudden tragic accident and
                          they both fall into a coma at the same time. A year
                          later, the younger brother Dae-jin wakes up believing
                          he is his older brother Ho-jin.
                        popularity: 5.923
                        poster_path: /znBcfFX8BjFDCDwiW5MrKqXPKhT.jpg
                        release_date: '2002-10-25'
                        title: Addicted
                        video: false
                        vote_average: 6.3
                        vote_count: 18
                      - adult: false
                        backdrop_path: /2tZb1Aq8TK55GAWuGnosGy9Rmt5.jpg
                        credit_id: 61dab728af43240043809ea4
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 821661
                        job: Adaptation
                        original_language: ko
                        original_title: 해피 뉴 이어
                        overview: >-
                          A romantic comedy of a young man and woman that is
                          told in the background of hotel 'Emross'. It has
                          stories of people who met each other at Hotel Emross
                          during the New Year holidays. Each one has his own
                          memory to relate and create relationships or just
                          going nostalgic.
                        popularity: 11.076
                        poster_path: /z1kgyVRmoNd4MxsP4NTNMadsPRZ.jpg
                        release_date: '2021-12-29'
                        title: A Year-End Medley
                        video: false
                        vote_average: 7.1
                        vote_count: 142
                      - adult: false
                        backdrop_path: null
                        credit_id: 56719fdcc3a368535a018697
                        department: Directing
                        genre_ids:
                          - 18
                          - 10749
                        id: 372600
                        job: Director
                        original_language: ko
                        original_title: 가을여행
                        overview: >-
                          It revolves around a journey of five people went on
                          different paths to discover their wounds.
                        popularity: 0.213
                        poster_path: /ep1CwG7ZcBYnDSoe6EN7Zwr5EYg.jpg
                        release_date: '1991-02-09'
                        title: Autumn Journey
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        credit_id: 56719fea9251415ec5015dfa
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                        id: 372600
                        job: Writer
                        original_language: ko
                        original_title: 가을여행
                        overview: >-
                          It revolves around a journey of five people went on
                          different paths to discover their wounds.
                        popularity: 0.213
                        poster_path: /ep1CwG7ZcBYnDSoe6EN7Zwr5EYg.jpg
                        release_date: '1991-02-09'
                        title: Autumn Journey
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /5mTHMygeAm96hKuELNRgkkfFtXu.jpg
                        credit_id: 56db3d28c3a3684ca6002c30
                        department: Directing
                        genre_ids:
                          - 18
                          - 10749
                          - 53
                          - 14
                        id: 385962
                        job: Director
                        original_language: ko
                        original_title: 시간이탈자
                        overview: >-
                          A high-school teacher in 1983 and a detective in 2015
                          join forces through their dreams to change the
                          perilous fate of the woman they both love—30 years
                          apart.
                        popularity: 4.762
                        poster_path: /enNzmbscuisQVAev4vj7muDwtNq.jpg
                        release_date: '2016-04-13'
                        title: Time Renegades
                        video: false
                        vote_average: 6.99
                        vote_count: 52
                      - adult: false
                        backdrop_path: /8t2M7JRUp4ErqUyFlmMjpONH7oZ.jpg
                        credit_id: 5813e262c3a368798d0245b8
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 14197
                        job: Original Story
                        original_language: en
                        original_title: My Sassy Girl
                        overview: >-
                          A guy has his life planned out until he is wooed,
                          groomed and then dumped by an elusive woman.
                        popularity: 14.751
                        poster_path: /2et1Cqn1UMax63jSGBNAtt7LCGO.jpg
                        release_date: '2008-05-26'
                        title: My Sassy Girl
                        video: false
                        vote_average: 6.7
                        vote_count: 371
                      - adult: false
                        backdrop_path: /2y6LerjQlte7fB9M5OxnPLMAGN2.jpg
                        credit_id: 5884596ac3a3684ec60154f9
                        department: Production
                        genre_ids:
                          - 35
                          - 10749
                        id: 428865
                        job: Producer
                        original_language: zh
                        original_title: 情敌蜜月
                        overview: >-
                          The boss and employee of a matchmaking website pretend
                          to be lovers in order to save the company and regain
                          their significant others.
                        popularity: 0.627
                        poster_path: /8MOdfMBFTYQYbNcPcJgMgoY16Ua.jpg
                        release_date: '2015-09-02'
                        title: The Honey Enemy
                        video: false
                        vote_average: 3
                        vote_count: 1
                      - adult: false
                        backdrop_path: null
                        credit_id: 58c7190ec3a3683dbd0013e4
                        department: Directing
                        genre_ids: []
                        id: 349705
                        job: Director
                        original_language: ko
                        original_title: 비 오는 날 수채화 2
                        overview: >-
                          Ji-su is finally released from jail and reunites with
                          his stepsister Ji-hyeon. However his father had dark
                          secret that neither of them knew before; both Ji-su
                          and Ji-hyeon are half-siblings.
                        popularity: 1.306
                        poster_path: /aPACZ0PsHZHjCkyWefT46yMMoIr.jpg
                        release_date: '1993-09-25'
                        title: Watercolors in Rain 2
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: null
                        credit_id: 58c7191dc3a3683df30014d8
                        department: Writing
                        genre_ids: []
                        id: 349705
                        job: Writer
                        original_language: ko
                        original_title: 비 오는 날 수채화 2
                        overview: >-
                          Ji-su is finally released from jail and reunites with
                          his stepsister Ji-hyeon. However his father had dark
                          secret that neither of them knew before; both Ji-su
                          and Ji-hyeon are half-siblings.
                        popularity: 1.306
                        poster_path: /aPACZ0PsHZHjCkyWefT46yMMoIr.jpg
                        release_date: '1993-09-25'
                        title: Watercolors in Rain 2
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /tihsWgMpHo3MTLwOC5RkEStxrXC.jpg
                        credit_id: 58c721e392514179de001a40
                        department: Directing
                        genre_ids: []
                        id: 350433
                        job: Director
                        original_language: ko
                        original_title: 비 오는 날 수채화
                        overview: >-
                          The story of Ji-su who life was torn by two women in
                          his life. One of them is his step-sister and the other
                          is a barroom dancer named Kyung-ja.
                        popularity: 1.226
                        poster_path: /nX8BSwxaXCQgMV7tDFQ3M2vzPw2.jpg
                        release_date: '1990-02-17'
                        title: Watercolors in Rain
                        video: false
                        vote_average: 5
                        vote_count: 1
                      - adult: false
                        backdrop_path: /tihsWgMpHo3MTLwOC5RkEStxrXC.jpg
                        credit_id: 58c722199251417a230019d3
                        department: Writing
                        genre_ids: []
                        id: 350433
                        job: Writer
                        original_language: ko
                        original_title: 비 오는 날 수채화
                        overview: >-
                          The story of Ji-su who life was torn by two women in
                          his life. One of them is his step-sister and the other
                          is a barroom dancer named Kyung-ja.
                        popularity: 1.226
                        poster_path: /nX8BSwxaXCQgMV7tDFQ3M2vzPw2.jpg
                        release_date: '1990-02-17'
                        title: Watercolors in Rain
                        video: false
                        vote_average: 5
                        vote_count: 1
                      - adult: false
                        backdrop_path: /9EBSA407j5zu3FjhqnwcJL6rYlJ.jpg
                        credit_id: 595e607ac3a3680dec05f717
                        department: Directing
                        genre_ids:
                          - 10749
                          - 18
                        id: 464911
                        job: Director
                        original_language: ja
                        original_title: 風の色
                        overview: >-
                          Yuri leaves Ryo with mysterious words. Ryo goes to
                          Hokkaido knowing that his doppelganger magician is
                          missing. Ryo realizes Yuri was also the magician’s
                          lover and he learns magic. The story that crosses over
                          two identities, illusion and magic.
                        popularity: 2.92
                        poster_path: /glNsZnAgNiHOsZnfXqnTMQrGMw1.jpg
                        release_date: '2018-01-26'
                        title: Colors of Wind
                        video: false
                        vote_average: 7.7
                        vote_count: 27
                      - adult: false
                        backdrop_path: /sk8ij1IJhznRYEAy37QluLk92Ao.jpg
                        credit_id: 664c7a928ee7f81e2d931789
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                        id: 664511
                        job: Original Film Writer
                        original_language: th
                        original_title: จดหมาย สายฝน ร่มวิเศษ
                        overview: >-
                          In a love triangle that miraculously mirrors her
                          mother's romance years ago, a young woman let's her
                          heart lead.
                        popularity: 9.836
                        poster_path: /ni6RW4XucHai4D0nrk0ivGYPXDk.jpg
                        release_date: '2020-02-06'
                        title: Classic Again
                        video: false
                        vote_average: 6.8
                        vote_count: 9
                      - adult: false
                        backdrop_path: null
                        credit_id: 5a81fc3d0e0a267f3b00496a
                        department: Directing
                        genre_ids:
                          - 10749
                        id: 432278
                        job: Director
                        original_language: zh
                        original_title: 在世界中心呼唤爱
                        overview: >-
                          Chinese romance film directed and co-written by Kwak
                          Jae-yong, starring Oho Ou, Zhang Huiwen, Yang Zi, Wang
                          Zhi, and Yao Lu. The film is an adaptation of Kyoichi
                          Katayama's 2004 novel Socrates in Love. Crying Out In
                          Love was released by Beijing Enlight Pictures on 26
                          August 2016
                        popularity: 1.747
                        poster_path: /yFc3EXeI5651Nmv8d5zqz7Bi0x9.jpg
                        release_date: '2016-08-26'
                        title: Crying Out In Love
                        video: false
                        vote_average: 5.3
                        vote_count: 3
                      - adult: false
                        backdrop_path: /t9v4ei7BA3QdohzUDq5RJv3oHmS.jpg
                        credit_id: 66761a29d521ef2cbceedf40
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                          - 18
                        id: 788035
                        job: Original Film Writer
                        original_language: tl
                        original_title: My Sassy Girl
                        overview: >-
                          The film tells the love story of Junjee, and Sheena.
                          Junjee just cannot seem to catch a romantic break.
                          Their personalities stand opposite to the
                          characteristics traditionally associated with
                          masculinity and femininity in Asian societies in
                          general.
                        popularity: 0.742
                        poster_path: /hdrJvKIvFtDzwLNBAlujgKJgfBD.jpg
                        release_date: '2024-01-31'
                        title: My Sassy Girl
                        video: false
                        vote_average: 7
                        vote_count: 1
                      - adult: false
                        backdrop_path: /3WLkhfbE0AGks7GlNTBjKe9uyRf.jpg
                        credit_id: 66761a5b4ac66183a277e3fd
                        department: Writing
                        genre_ids:
                          - 35
                          - 18
                          - 10749
                        id: 894693
                        job: Original Film Writer
                        original_language: id
                        original_title: My Sassy Girl
                        overview: >-
                          Gian, a young man saves Sisy, a woman who makes drunk,
                          depressed and wants to kill herself at a train station
                          at night. Their love story started from this.
                        popularity: 3.33
                        poster_path: /khenn7JJ9vxF34i3xqXIpDWI1aO.jpg
                        release_date: '2022-06-23'
                        title: My Sassy Girl
                        video: false
                        vote_average: 6.4
                        vote_count: 5
                      - adult: false
                        backdrop_path: /gvNHGmwAvXtuNZg3BNcl1SdyIGD.jpg
                        credit_id: 66761a775b2dc52ddf9aa8fe
                        department: Writing
                        genre_ids:
                          - 35
                          - 28
                          - 10749
                        id: 813170
                        job: Original Film Writer
                        original_language: zh
                        original_title: 我的野蛮女掌门
                        overview: ''
                        popularity: 2.302
                        poster_path: /pf4xk1kPFpyG58HubBv4xK2F89l.jpg
                        release_date: '2021-03-31'
                        title: My Sassy Girl
                        video: false
                        vote_average: 5
                        vote_count: 1
                      - adult: false
                        backdrop_path: null
                        credit_id: 66761a9ea9907ad3e79fdd57
                        department: Writing
                        genre_ids:
                          - 10749
                          - 35
                        id: 51798
                        job: Original Film Writer
                        original_language: zh
                        original_title: My Sassy Girl 2
                        overview: >-
                          This sequel/cash-in to the popular 2001 Korean rom-com
                          apparently picks up the story where the last film left
                          off with actress Lynn Xiong replacing Jun Ji-hyun in
                          the leading role.
                        popularity: 1.572
                        poster_path: /171uTEYbBuCoFjRVtvQMdUdfhQ7.jpg
                        release_date: '2010-11-05'
                        title: My Sassy Girl 2
                        video: false
                        vote_average: 2.5
                        vote_count: 2
                      - adult: false
                        backdrop_path: /eDZAjMDhsBSzXFJS2uK7LAuf3RS.jpg
                        credit_id: 66762088bfdae4e8c934cc55
                        department: Writing
                        genre_ids:
                          - 35
                          - 10749
                        id: 538275
                        job: Original Film Writer
                        original_language: vi
                        original_title: Yêu Em Bất Chấp
                        overview: ''
                        popularity: 0.287
                        poster_path: /jlnLvBTD4NnN4T4Nmgj5bVmk8Eg.jpg
                        release_date: '2018-04-06'
                        title: Yêu Em Bất Chấp
                        video: false
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /8iDWLZwmomWHzpqI9oC9IYA19r8.jpg
                        credit_id: 669bff5bc5e20d62a8182063
                        department: Writing
                        genre_ids:
                          - 28
                          - 35
                          - 10749
                          - 878
                        id: 19486
                        job: Screenplay
                        original_language: ja
                        original_title: 僕の彼女はサイボーグ
                        overview: >-
                          A lonely university student develops a romance with a
                          beautiful interesting woman, who turns out to be a
                          cyborg from the future.
                        popularity: 8.086
                        poster_path: /kt2wjQjJqTh15IRirPOBByFVAEe.jpg
                        release_date: '2008-05-31'
                        title: Cyborg She
                        video: false
                        vote_average: 7.3
                        vote_count: 132
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        credit_id: 66bc8338efa268dff1e991cf
                        department: Writing
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        job: Screenplay
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                      - adult: false
                        backdrop_path: /fJCE7KGQVj8PWQZZ5upIauY2oiO.jpg
                        credit_id: 66bc834ea14c7df7dae1dfdf
                        department: Writing
                        genre_ids:
                          - 10749
                          - 35
                        id: 39277
                        job: Story
                        original_language: zh
                        original_title: 女人不坏
                        overview: >-
                          A series of intertwining stories focus on the lives
                          and transformations of three women and their romantic
                          relationships.
                        popularity: 3.683
                        poster_path: /si5zOf3YeGk25mYshBXhjhOCUbQ.jpg
                        release_date: '2008-08-08'
                        title: All About Women
                        video: false
                        vote_average: 5.2
                        vote_count: 12
                      - adult: false
                        backdrop_path: /9EBSA407j5zu3FjhqnwcJL6rYlJ.jpg
                        credit_id: 5cdbcf2f925141767ece0e5f
                        department: Writing
                        genre_ids:
                          - 10749
                          - 18
                        id: 464911
                        job: Writer
                        original_language: ja
                        original_title: 風の色
                        overview: >-
                          Yuri leaves Ryo with mysterious words. Ryo goes to
                          Hokkaido knowing that his doppelganger magician is
                          missing. Ryo realizes Yuri was also the magician’s
                          lover and he learns magic. The story that crosses over
                          two identities, illusion and magic.
                        popularity: 2.92
                        poster_path: /glNsZnAgNiHOsZnfXqnTMQrGMw1.jpg
                        release_date: '2018-01-26'
                        title: Colors of Wind
                        video: false
                        vote_average: 7.7
                        vote_count: 27
                      - adult: false
                        backdrop_path: /pUq74SgliWDXEe8kGTGka8ifI0d.jpg
                        credit_id: 5cdbcfc6c3a3684a97c84a87
                        department: Production
                        genre_ids:
                          - 18
                        id: 72245
                        job: Producer
                        original_language: zh
                        original_title: 钢的琴
                        overview: >-
                          To fight for custody of his daughter who loves playing
                          the piano, a steel factory worker decides to forge a
                          piano from scratch.
                        popularity: 4.627
                        poster_path: /vI4ggulcfZxko9S2dLdmKMOiB4h.jpg
                        release_date: '2011-07-15'
                        title: The Piano in a Factory
                        video: false
                        vote_average: 7.1
                        vote_count: 49
                      - adult: false
                        backdrop_path: /5mTHMygeAm96hKuELNRgkkfFtXu.jpg
                        credit_id: 5cdbd0110e0a26045cd01d81
                        department: Writing
                        genre_ids:
                          - 18
                          - 10749
                          - 53
                          - 14
                        id: 385962
                        job: Adaptation
                        original_language: ko
                        original_title: 시간이탈자
                        overview: >-
                          A high-school teacher in 1983 and a detective in 2015
                          join forces through their dreams to change the
                          perilous fate of the woman they both love—30 years
                          apart.
                        popularity: 4.762
                        poster_path: /enNzmbscuisQVAev4vj7muDwtNq.jpg
                        release_date: '2016-04-13'
                        title: Time Renegades
                        video: false
                        vote_average: 6.99
                        vote_count: 52
                      - adult: false
                        backdrop_path: null
                        credit_id: 66e305eb28048d92def907bb
                        department: Directing
                        genre_ids: []
                        id: 1355800
                        job: Director
                        original_language: ko
                        original_title: '3인 3색 러브스토리: 사랑즐감'
                        overview: ''
                        popularity: 0.981
                        poster_path: /2K1nzdHiaClcPammqgqDVEunMwn.jpg
                        release_date: '2005-01-01'
                        title: '3인 3색 러브스토리: 사랑즐감'
                        video: false
                        vote_average: 0
                        vote_count: 0
                    id: 63429

````