> ## 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.

# TV Credit

> Get the TV credits that belong to a person.



## OpenAPI

````yaml api-reference/openapi.json get /3/person/{{person_id}}/tv_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}}/tv_credits:
    parameters:
      - name: person_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - People
      summary: TV Credit
      description: Get the TV credits that belong to a person.
      operationId: tvCredit
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
      responses:
        '200':
          description: TV Credit
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=18659
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Jan 2025 02:05:11 GMT
            ETag:
              schema:
                type: string
                example: W/"a47197189989c949771d8acee3691415"
            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 d2a65e6cd7ddc4f5373432734cb3111c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: ZWQd3SpTytnc--9BzGIEBA18M2t4KkyHniQ0xEzPu2x3JjzUUzpT4g==
            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: '3926'
            x-memc-expires:
              schema:
                type: string
                example: '18659'
            x-memc-key:
              schema:
                type: string
                example: 616ad26fced307d9052756a03a14b547
          content:
            application/json:
              schema:
                type: object
                properties:
                  cast:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          nullable: true
                          example: null
                        character:
                          type: string
                          example: ''
                        credit_id:
                          type: string
                          example: 649758bb955c6501059d2707
                        episode_count:
                          type: number
                          example: 1
                        first_air_date:
                          type: string
                          example: '2023-04-17'
                        genre_ids:
                          type: array
                          items: {}
                          example: []
                        id:
                          type: number
                          example: 229335
                        name:
                          type: string
                          example: 인물사담회
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: KR
                          example:
                            - KR
                        original_language:
                          type: string
                          example: ko
                        original_name:
                          type: string
                          example: 인물사담회
                        overview:
                          type: string
                          example: ''
                        popularity:
                          type: number
                          example: 2.719
                        poster_path:
                          type: string
                          example: /97Q1Jdm9IKOjhdRBb3yJTwoGBwd.jpg
                        vote_average:
                          type: number
                          example: 0
                        vote_count:
                          type: number
                          example: 0
                    example:
                      - adult: false
                        backdrop_path: null
                        character: ''
                        credit_id: 649758bb955c6501059d2707
                        episode_count: 1
                        first_air_date: '2023-04-17'
                        genre_ids: []
                        id: 229335
                        name: 인물사담회
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 인물사담회
                        overview: ''
                        popularity: 2.719
                        poster_path: /97Q1Jdm9IKOjhdRBb3yJTwoGBwd.jpg
                        vote_average: 0
                        vote_count: 0
                  crew:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        backdrop_path:
                          type: string
                          example: /ar9vbvgTKoxZCHR35mZpv7PYwGD.jpg
                        credit_id:
                          type: string
                          example: 66761b15d0ded90cd0231846
                        department:
                          type: string
                          example: Writing
                        episode_count:
                          type: number
                          example: 11
                        first_air_date:
                          type: string
                          example: '2008-04-20'
                        genre_ids:
                          type: array
                          items:
                            type: number
                            example: 18
                          example:
                            - 18
                            - 35
                        id:
                          type: number
                          example: 5585
                        job:
                          type: string
                          example: Original Film Writer
                        name:
                          type: string
                          example: My Sassy Girl
                        origin_country:
                          type: array
                          items:
                            type: string
                            example: JP
                          example:
                            - JP
                        original_language:
                          type: string
                          example: ja
                        original_name:
                          type: string
                          example: 猟奇的な彼女
                        overview:
                          type: string
                          example: >-
                            Ryokiteki na Kanojo is a Japanese television drama
                            based on the South Korean movie My Sassy Girl. It
                            narrates the story between Saburo Masaki, a marine
                            biologist, and Riko Takami, an aspiring writer with
                            a short temper. While the two are at odds with each
                            other at first, they eventually become attracted to
                            each other and develop a relationship. It received
                            an average of 8.18% viewer rating throughout the
                            series.
                        popularity:
                          type: number
                          example: 15.002
                        poster_path:
                          type: string
                          example: /k6yivUGMR161AJvLgFnAkcFI879.jpg
                        vote_average:
                          type: number
                          example: 9
                        vote_count:
                          type: number
                          example: 1
                    example:
                      - adult: false
                        backdrop_path: /ar9vbvgTKoxZCHR35mZpv7PYwGD.jpg
                        credit_id: 66761b15d0ded90cd0231846
                        department: Writing
                        episode_count: 11
                        first_air_date: '2008-04-20'
                        genre_ids:
                          - 18
                          - 35
                        id: 5585
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 猟奇的な彼女
                        overview: >-
                          Ryokiteki na Kanojo is a Japanese television drama
                          based on the South Korean movie My Sassy Girl. It
                          narrates the story between Saburo Masaki, a marine
                          biologist, and Riko Takami, an aspiring writer with a
                          short temper. While the two are at odds with each
                          other at first, they eventually become attracted to
                          each other and develop a relationship. It received an
                          average of 8.18% viewer rating throughout the series.
                        popularity: 15.002
                        poster_path: /k6yivUGMR161AJvLgFnAkcFI879.jpg
                        vote_average: 9
                        vote_count: 1
                      - adult: false
                        backdrop_path: /9bp9cVuqmZUAVfTpCxiPIpC5ACS.jpg
                        credit_id: 66761b355600b1e34177f245
                        department: Writing
                        episode_count: 32
                        first_air_date: '2017-05-29'
                        genre_ids:
                          - 35
                          - 18
                        id: 71347
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 엽기적인 그녀
                        overview: >-
                          Set in the Joseon Dynasty period, a romance takes
                          place between cold-hearted Gyun-Woo and Princess
                          Hyemyung who causes troubles.
                        popularity: 127.186
                        poster_path: /llSHPKnZWaFvvTKqslvUVeyrK4O.jpg
                        vote_average: 6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /9WE5ffKr6iXXCXzG0kyuxOmY6s4.jpg
                        credit_id: 66761c56e60f0fd229577d57
                        department: Writing
                        episode_count: 1
                        first_air_date: '2012-05-26'
                        genre_ids:
                          - 18
                        id: 128387
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country: []
                        original_language: zh
                        original_name: 牵牛的夏天
                        overview: >-
                          Qian Niu is just a typical boy. On flight to Shanghai,
                          he meets a superstar named Xiao Xia. She accidentally
                          takes his luggage and then it begins their hilariously
                          funny story... He unexpectedly becomes Xiao Xia's
                          personal assistant and Xiao Xia just couldn't help
                          herself but bullies him
                        popularity: 0.872
                        poster_path: /xmxzg1DFV4pxghV8EZFB4NIbIMQ.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /pJ57DSKx7x5aK32i4zb1ePph4eF.jpg
                        credit_id: 66761b705cafacbc073af88d
                        department: Writing
                        episode_count: 16
                        first_air_date: '2021-10-11'
                        genre_ids:
                          - 35
                        id: 213571
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country:
                          - TH
                        original_language: th
                        original_name: ยัยตัวร้ายกับนายกระจั๊วะ
                        overview: >-
                          A young man sees a drunk, cute woman standing too
                          close to the tracks at a pier and pulls her back. She
                          ends up getting him into trouble repeatedly after
                          that, starting on the pier.
                        popularity: 6.118
                        poster_path: /xbxw80UEfpzWioX3eMR3lTsC4BQ.jpg
                        vote_average: 0
                        vote_count: 0
                  id:
                    type: number
                    example: 63429
              examples:
                TV Credit:
                  value:
                    cast:
                      - adult: false
                        backdrop_path: null
                        character: ''
                        credit_id: 649758bb955c6501059d2707
                        episode_count: 1
                        first_air_date: '2023-04-17'
                        genre_ids: []
                        id: 229335
                        name: 인물사담회
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 인물사담회
                        overview: ''
                        popularity: 2.719
                        poster_path: /97Q1Jdm9IKOjhdRBb3yJTwoGBwd.jpg
                        vote_average: 0
                        vote_count: 0
                    crew:
                      - adult: false
                        backdrop_path: /ar9vbvgTKoxZCHR35mZpv7PYwGD.jpg
                        credit_id: 66761b15d0ded90cd0231846
                        department: Writing
                        episode_count: 11
                        first_air_date: '2008-04-20'
                        genre_ids:
                          - 18
                          - 35
                        id: 5585
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country:
                          - JP
                        original_language: ja
                        original_name: 猟奇的な彼女
                        overview: >-
                          Ryokiteki na Kanojo is a Japanese television drama
                          based on the South Korean movie My Sassy Girl. It
                          narrates the story between Saburo Masaki, a marine
                          biologist, and Riko Takami, an aspiring writer with a
                          short temper. While the two are at odds with each
                          other at first, they eventually become attracted to
                          each other and develop a relationship. It received an
                          average of 8.18% viewer rating throughout the series.
                        popularity: 15.002
                        poster_path: /k6yivUGMR161AJvLgFnAkcFI879.jpg
                        vote_average: 9
                        vote_count: 1
                      - adult: false
                        backdrop_path: /9bp9cVuqmZUAVfTpCxiPIpC5ACS.jpg
                        credit_id: 66761b355600b1e34177f245
                        department: Writing
                        episode_count: 32
                        first_air_date: '2017-05-29'
                        genre_ids:
                          - 35
                          - 18
                        id: 71347
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country:
                          - KR
                        original_language: ko
                        original_name: 엽기적인 그녀
                        overview: >-
                          Set in the Joseon Dynasty period, a romance takes
                          place between cold-hearted Gyun-Woo and Princess
                          Hyemyung who causes troubles.
                        popularity: 127.186
                        poster_path: /llSHPKnZWaFvvTKqslvUVeyrK4O.jpg
                        vote_average: 6
                        vote_count: 27
                      - adult: false
                        backdrop_path: /9WE5ffKr6iXXCXzG0kyuxOmY6s4.jpg
                        credit_id: 66761c56e60f0fd229577d57
                        department: Writing
                        episode_count: 1
                        first_air_date: '2012-05-26'
                        genre_ids:
                          - 18
                        id: 128387
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country: []
                        original_language: zh
                        original_name: 牵牛的夏天
                        overview: >-
                          Qian Niu is just a typical boy. On flight to Shanghai,
                          he meets a superstar named Xiao Xia. She accidentally
                          takes his luggage and then it begins their hilariously
                          funny story... He unexpectedly becomes Xiao Xia's
                          personal assistant and Xiao Xia just couldn't help
                          herself but bullies him
                        popularity: 0.872
                        poster_path: /xmxzg1DFV4pxghV8EZFB4NIbIMQ.jpg
                        vote_average: 0
                        vote_count: 0
                      - adult: false
                        backdrop_path: /pJ57DSKx7x5aK32i4zb1ePph4eF.jpg
                        credit_id: 66761b705cafacbc073af88d
                        department: Writing
                        episode_count: 16
                        first_air_date: '2021-10-11'
                        genre_ids:
                          - 35
                        id: 213571
                        job: Original Film Writer
                        name: My Sassy Girl
                        origin_country:
                          - TH
                        original_language: th
                        original_name: ยัยตัวร้ายกับนายกระจั๊วะ
                        overview: >-
                          A young man sees a drunk, cute woman standing too
                          close to the tracks at a pier and pulls her back. She
                          ends up getting him into trouble repeatedly after
                          that, starting on the pier.
                        popularity: 6.118
                        poster_path: /xbxw80UEfpzWioX3eMR3lTsC4BQ.jpg
                        vote_average: 0
                        vote_count: 0
                    id: 63429

````