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

# Credits

> Credits



## OpenAPI

````yaml api-reference/openapi.json get /3/tv/{{series_id}}/season/{{season_number}}/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/tv/{{series_id}}/season/{{season_number}}/credits:
    parameters:
      - name: series_id
        in: path
        required: true
        schema:
          type: string
      - name: season_number
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - TV Seasons
      summary: Credits
      description: Credits
      operationId: credits2
      parameters:
        - name: language
          in: query
          schema:
            type: string
            example: en-US
      responses:
        '200':
          description: Credits
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=6470
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sat, 11 Jan 2025 16:23:50 GMT
            ETag:
              schema:
                type: string
                example: W/"5091b71d951fee55971da7bbda5ac731"
            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 7df0e12cb5a55cb5e64296e91e226fbe.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: n9_Ik9gDJi3v0Te6b73dTcnWFGD9Ns0fPmCJ1cuv91lO75Pynd9LFQ==
            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: '17507'
            x-memc-expires:
              schema:
                type: string
                example: '6470'
            x-memc-key:
              schema:
                type: string
                example: e9a57ba0d8e38ef5b161e99fabaa1415
          content:
            application/json:
              schema:
                type: object
                properties:
                  cast:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        character:
                          type: string
                          example: Walter White
                        credit_id:
                          type: string
                          example: 52542282760ee313280017f9
                        gender:
                          type: number
                          example: 2
                        id:
                          type: number
                          example: 17419
                        known_for_department:
                          type: string
                          example: Acting
                        name:
                          type: string
                          example: Bryan Cranston
                        order:
                          type: number
                          example: 0
                        original_name:
                          type: string
                          example: Bryan Cranston
                        popularity:
                          type: number
                          example: 54.354
                        profile_path:
                          type: string
                          example: /7Jahy5LZX2Fo8fGJltMreAI49hC.jpg
                    example:
                      - adult: false
                        character: Walter White
                        credit_id: 52542282760ee313280017f9
                        gender: 2
                        id: 17419
                        known_for_department: Acting
                        name: Bryan Cranston
                        order: 0
                        original_name: Bryan Cranston
                        popularity: 54.354
                        profile_path: /7Jahy5LZX2Fo8fGJltMreAI49hC.jpg
                      - adult: false
                        character: Jesse Pinkman
                        credit_id: 52542282760ee31328001845
                        gender: 2
                        id: 84497
                        known_for_department: Acting
                        name: Aaron Paul
                        order: 1
                        original_name: Aaron Paul
                        popularity: 48.759
                        profile_path: /tz4xqaoXV7eKrYqPGPvtEae3X06.jpg
                      - adult: false
                        character: Skyler White
                        credit_id: 52542282760ee3132800181b
                        gender: 1
                        id: 134531
                        known_for_department: Acting
                        name: Anna Gunn
                        order: 2
                        original_name: Anna Gunn
                        popularity: 47.158
                        profile_path: /adppyeu1a4REN3khtgmXusrapFi.jpg
                      - adult: false
                        character: Walter White Jr.
                        credit_id: 52542284760ee313280018a9
                        gender: 2
                        id: 209674
                        known_for_department: Acting
                        name: RJ Mitte
                        order: 3
                        original_name: RJ Mitte
                        popularity: 32.337
                        profile_path: /aG6NYV2EgzBFLRIl7vvbtd7go1j.jpg
                      - adult: false
                        character: Hank Schrader
                        credit_id: 52542283760ee3132800187b
                        gender: 2
                        id: 14329
                        known_for_department: Acting
                        name: Dean Norris
                        order: 4
                        original_name: Dean Norris
                        popularity: 41.967
                        profile_path: /mVaGouQNschhJEncob8ld1aOZwF.jpg
                      - adult: false
                        character: Marie Schrader
                        credit_id: 52542283760ee31328001891
                        gender: 1
                        id: 1217934
                        known_for_department: Acting
                        name: Betsy Brandt
                        order: 5
                        original_name: Betsy Brandt
                        popularity: 24.823
                        profile_path: /kIbVUpGfLAF1KMn1YvWPnc12DRP.jpg
                      - adult: false
                        character: Saul Goodman
                        credit_id: 5271b180760ee35afc09bb8d
                        gender: 2
                        id: 59410
                        known_for_department: Acting
                        name: Bob Odenkirk
                        order: 7
                        original_name: Bob Odenkirk
                        popularity: 33.01
                        profile_path: /rF0Lb6SBhGSTvjRffmlKRSeI3jE.jpg
                      - adult: false
                        character: Mike Ehrmantraut
                        credit_id: 5271b1e6760ee35af60941ad
                        gender: 2
                        id: 783
                        known_for_department: Acting
                        name: Jonathan Banks
                        order: 9
                        original_name: Jonathan Banks
                        popularity: 41.76
                        profile_path: /bswk26L13PvY4iMTwUTAsepXCLv.jpg
                  crew:
                    type: array
                    items:
                      type: object
                      properties:
                        adult:
                          type: boolean
                          example: false
                        credit_id:
                          type: string
                          example: 64189f31310325010151b83d
                        department:
                          type: string
                          example: Production
                        gender:
                          type: number
                          example: 1
                        id:
                          type: number
                          example: 1223198
                        job:
                          type: string
                          example: Supervising Producer
                        known_for_department:
                          type: string
                          example: Writing
                        name:
                          type: string
                          example: Moira Walley-Beckett
                        original_name:
                          type: string
                          example: Moira Walley-Beckett
                        popularity:
                          type: number
                          example: 7.899
                        profile_path:
                          type: string
                          nullable: true
                          example: /1sRNcxMZVsVcY6NFNQzASJuR8By.jpg
                    example:
                      - adult: false
                        credit_id: 64189f31310325010151b83d
                        department: Production
                        gender: 1
                        id: 1223198
                        job: Supervising Producer
                        known_for_department: Writing
                        name: Moira Walley-Beckett
                        original_name: Moira Walley-Beckett
                        popularity: 7.899
                        profile_path: /1sRNcxMZVsVcY6NFNQzASJuR8By.jpg
                      - adult: false
                        credit_id: 64189e9c6a2227008de8d158
                        department: Production
                        gender: 2
                        id: 1223193
                        job: Co-Executive Producer
                        known_for_department: Writing
                        name: George Mastras
                        original_name: George Mastras
                        popularity: 1.588
                        profile_path: /2K0NELbA0Ow45ECudbO2eFc1Fe4.jpg
                      - adult: false
                        credit_id: 64189ecbe7414600f7ef55f8
                        department: Production
                        gender: 2
                        id: 103009
                        job: Co-Executive Producer
                        known_for_department: Writing
                        name: Thomas Schnauz
                        original_name: Thomas Schnauz
                        popularity: 3.873
                        profile_path: /uMz5wsgv6QQAgFI809SgCCbwYn9.jpg
                      - adult: false
                        credit_id: 64189e3f0d5d85009ba2c1d8
                        department: Production
                        gender: 2
                        id: 24951
                        job: Co-Executive Producer
                        known_for_department: Production
                        name: Peter Gould
                        original_name: Peter Gould
                        popularity: 14.514
                        profile_path: /a2dJSpUiXQ2NAxqSzztr6WsnhOJ.jpg
                      - adult: false
                        credit_id: 6418a1a7a14bef00b815158a
                        department: Costume & Make-Up
                        gender: 1
                        id: 1537674
                        job: Costume Design
                        known_for_department: Costume & Make-Up
                        name: Jennifer Bryan
                        original_name: Jennifer Bryan
                        popularity: 4.588
                        profile_path: /oA5QovyVfEG0SUIs0DIhGsriyok.jpg
                      - adult: false
                        credit_id: 5254228d760ee31328001cc7
                        department: Production
                        gender: 2
                        id: 17419
                        job: Producer
                        known_for_department: Acting
                        name: Bryan Cranston
                        original_name: Bryan Cranston
                        popularity: 54.354
                        profile_path: /7Jahy5LZX2Fo8fGJltMreAI49hC.jpg
                      - adult: false
                        credit_id: 6449841d05a53304be1b880d
                        department: Production
                        gender: 2
                        id: 1930718
                        job: Location Manager
                        known_for_department: Production
                        name: Christian Diaz de Bedoya
                        original_name: Christian Diaz de Bedoya
                        popularity: 0.576
                        profile_path: /jgELIZ1msexaFvFHUePDvvZpFRr.jpg
                      - adult: false
                        credit_id: 64189dcea14bef008100712b
                        department: Production
                        gender: 1
                        id: 1223199
                        job: Co-Executive Producer
                        known_for_department: Production
                        name: Melissa Bernstein
                        original_name: Melissa Bernstein
                        popularity: 3.742
                        profile_path: /rSztwqMUIko8RkmwjxBse1XDW3g.jpg
                      - adult: false
                        credit_id: 64189f7aa14bef0099c8395a
                        department: Production
                        gender: 2
                        id: 3970747
                        job: Associate Producer
                        known_for_department: Production
                        name: Andrew Ortner
                        original_name: Andrew Ortner
                        popularity: 0.323
                        profile_path: null
                      - adult: false
                        credit_id: 64189d742b8a4300b8d57ca9
                        department: Production
                        gender: 1
                        id: 1223202
                        job: Producer
                        known_for_department: Production
                        name: Diane Mercer
                        original_name: Diane Mercer
                        popularity: 5.254
                        profile_path: null
                      - adult: false
                        credit_id: 64189e12a14bef00b81514a9
                        department: Production
                        gender: 2
                        id: 1223194
                        job: Co-Executive Producer
                        known_for_department: Writing
                        name: Sam Catlin
                        original_name: Sam Catlin
                        popularity: 5.631
                        profile_path: /xc9Ax2kpvQLayUaFL1d1NTUQ7df.jpg
                      - adult: false
                        credit_id: 64189e5f6a2227008de8d147
                        department: Production
                        gender: 1
                        id: 29779
                        job: Executive Producer
                        known_for_department: Directing
                        name: Michelle MacLaren
                        original_name: Michelle MacLaren
                        popularity: 12.156
                        profile_path: /3LcH5eNiysMWaepARllVrS4Dzn7.jpg
                      - adult: false
                        credit_id: 64634c54ef8b3200fe7e825f
                        department: Crew
                        gender: 2
                        id: 4065202
                        job: Thanks
                        known_for_department: Crew
                        name: Richard Berry
                        original_name: Richard Berry
                        popularity: 0.349
                        profile_path: null
                      - adult: false
                        credit_id: 539980a1c3a3681d0d00148b
                        department: Art
                        gender: 2
                        id: 12706
                        job: Production Design
                        known_for_department: Art
                        name: Mark S. Freeborn
                        original_name: Mark S. Freeborn
                        popularity: 1.306
                        profile_path: null
                      - adult: false
                        credit_id: 644465ffd38b580521114ec4
                        department: Production
                        gender: 2
                        id: 1537675
                        job: Casting Associate
                        known_for_department: Production
                        name: Russell Scott
                        original_name: Russell Scott
                        popularity: 1.453
                        profile_path: null
                      - adult: false
                        credit_id: 64189d12310325010151b7b7
                        department: Production
                        gender: 2
                        id: 1223200
                        job: Producer
                        known_for_department: Production
                        name: Stewart Lyons
                        original_name: Stewart Lyons
                        popularity: 1.236
                        profile_path: /dCAN4EMn8rsqALwDIjf9aNjuVTm.jpg
                      - adult: false
                        credit_id: 539980c8c3a3681d0700143a
                        department: Art
                        gender: 2
                        id: 1330079
                        job: Art Direction
                        known_for_department: Art
                        name: Bjarne Sletteland
                        original_name: Bjarne Sletteland
                        popularity: 1.296
                        profile_path: null
                      - adult: false
                        credit_id: 52b7008819c29559eb03dd72
                        department: Sound
                        gender: 2
                        id: 1280070
                        job: Original Music Composer
                        known_for_department: Sound
                        name: Dave Porter
                        original_name: Dave Porter
                        popularity: 3.538
                        profile_path: /flRW9QknVtU8HG7lLjMvflbhl2a.jpg
                      - adult: false
                        credit_id: 64446643cee2f604f336e877
                        department: Production
                        gender: 1
                        id: 959387
                        job: Casting
                        known_for_department: Production
                        name: Sherry Thomas
                        original_name: Sherry Thomas
                        popularity: 5.041
                        profile_path: null
                      - adult: false
                        credit_id: 6444663ccee2f6049f36d7d3
                        department: Production
                        gender: 1
                        id: 6479
                        job: Casting
                        known_for_department: Production
                        name: Sharon Bialy
                        original_name: Sharon Bialy
                        popularity: 18.3
                        profile_path: /uOex6LpaQYncD0sQfVYD1frI5uJ.jpg
                      - adult: false
                        credit_id: 52542287760ee31328001af1
                        department: Production
                        gender: 2
                        id: 66633
                        job: Executive Producer
                        known_for_department: Writing
                        name: Vince Gilligan
                        original_name: Vince Gilligan
                        popularity: 24.349
                        profile_path: /z3E0DhBg1V1PZVEtS9vfFPzOWYB.jpg
                      - adult: false
                        credit_id: 64634e45e3fa2f00e404a628
                        department: Sound
                        gender: 2
                        id: 1069688
                        job: Music Supervisor
                        known_for_department: Sound
                        name: Thomas Golubić
                        original_name: Thomas Golubić
                        popularity: 1.344
                        profile_path: /umzkpmX3p3GdrSutAHFX7Rij0Sm.jpg
                      - adult: false
                        credit_id: 52542287760ee31328001b69
                        department: Production
                        gender: 2
                        id: 5162
                        job: Executive Producer
                        known_for_department: Production
                        name: Mark Johnson
                        original_name: Mark Johnson
                        popularity: 16.405
                        profile_path: /gLuXkOQjqB81aHMGJ2OtYzEpHQu.jpg
                      - adult: false
                        credit_id: 644986702fdec604e4a1236a
                        department: Sound
                        gender: 2
                        id: 1537682
                        job: Supervising Sound Editor
                        known_for_department: Sound
                        name: Kurt Nicholas Forshager
                        original_name: Kurt Nicholas Forshager
                        popularity: 1.088
                        profile_path: null
                      - adult: false
                        credit_id: 6450485343501100ea397cba
                        department: Crew
                        gender: 2
                        id: 1537690
                        job: Stunt Coordinator
                        known_for_department: Crew
                        name: Al Goto
                        original_name: Al Goto
                        popularity: 20.084
                        profile_path: /sJEtjLwLdqhY3soar4BflPBDpZu.jpg
                  id:
                    type: number
                    example: 3578
              examples:
                Credits:
                  value:
                    cast:
                      - adult: false
                        character: Walter White
                        credit_id: 52542282760ee313280017f9
                        gender: 2
                        id: 17419
                        known_for_department: Acting
                        name: Bryan Cranston
                        order: 0
                        original_name: Bryan Cranston
                        popularity: 54.354
                        profile_path: /7Jahy5LZX2Fo8fGJltMreAI49hC.jpg
                      - adult: false
                        character: Jesse Pinkman
                        credit_id: 52542282760ee31328001845
                        gender: 2
                        id: 84497
                        known_for_department: Acting
                        name: Aaron Paul
                        order: 1
                        original_name: Aaron Paul
                        popularity: 48.759
                        profile_path: /tz4xqaoXV7eKrYqPGPvtEae3X06.jpg
                      - adult: false
                        character: Skyler White
                        credit_id: 52542282760ee3132800181b
                        gender: 1
                        id: 134531
                        known_for_department: Acting
                        name: Anna Gunn
                        order: 2
                        original_name: Anna Gunn
                        popularity: 47.158
                        profile_path: /adppyeu1a4REN3khtgmXusrapFi.jpg
                      - adult: false
                        character: Walter White Jr.
                        credit_id: 52542284760ee313280018a9
                        gender: 2
                        id: 209674
                        known_for_department: Acting
                        name: RJ Mitte
                        order: 3
                        original_name: RJ Mitte
                        popularity: 32.337
                        profile_path: /aG6NYV2EgzBFLRIl7vvbtd7go1j.jpg
                      - adult: false
                        character: Hank Schrader
                        credit_id: 52542283760ee3132800187b
                        gender: 2
                        id: 14329
                        known_for_department: Acting
                        name: Dean Norris
                        order: 4
                        original_name: Dean Norris
                        popularity: 41.967
                        profile_path: /mVaGouQNschhJEncob8ld1aOZwF.jpg
                      - adult: false
                        character: Marie Schrader
                        credit_id: 52542283760ee31328001891
                        gender: 1
                        id: 1217934
                        known_for_department: Acting
                        name: Betsy Brandt
                        order: 5
                        original_name: Betsy Brandt
                        popularity: 24.823
                        profile_path: /kIbVUpGfLAF1KMn1YvWPnc12DRP.jpg
                      - adult: false
                        character: Saul Goodman
                        credit_id: 5271b180760ee35afc09bb8d
                        gender: 2
                        id: 59410
                        known_for_department: Acting
                        name: Bob Odenkirk
                        order: 7
                        original_name: Bob Odenkirk
                        popularity: 33.01
                        profile_path: /rF0Lb6SBhGSTvjRffmlKRSeI3jE.jpg
                      - adult: false
                        character: Mike Ehrmantraut
                        credit_id: 5271b1e6760ee35af60941ad
                        gender: 2
                        id: 783
                        known_for_department: Acting
                        name: Jonathan Banks
                        order: 9
                        original_name: Jonathan Banks
                        popularity: 41.76
                        profile_path: /bswk26L13PvY4iMTwUTAsepXCLv.jpg
                    crew:
                      - adult: false
                        credit_id: 64189f31310325010151b83d
                        department: Production
                        gender: 1
                        id: 1223198
                        job: Supervising Producer
                        known_for_department: Writing
                        name: Moira Walley-Beckett
                        original_name: Moira Walley-Beckett
                        popularity: 7.899
                        profile_path: /1sRNcxMZVsVcY6NFNQzASJuR8By.jpg
                      - adult: false
                        credit_id: 64189e9c6a2227008de8d158
                        department: Production
                        gender: 2
                        id: 1223193
                        job: Co-Executive Producer
                        known_for_department: Writing
                        name: George Mastras
                        original_name: George Mastras
                        popularity: 1.588
                        profile_path: /2K0NELbA0Ow45ECudbO2eFc1Fe4.jpg
                      - adult: false
                        credit_id: 64189ecbe7414600f7ef55f8
                        department: Production
                        gender: 2
                        id: 103009
                        job: Co-Executive Producer
                        known_for_department: Writing
                        name: Thomas Schnauz
                        original_name: Thomas Schnauz
                        popularity: 3.873
                        profile_path: /uMz5wsgv6QQAgFI809SgCCbwYn9.jpg
                      - adult: false
                        credit_id: 64189e3f0d5d85009ba2c1d8
                        department: Production
                        gender: 2
                        id: 24951
                        job: Co-Executive Producer
                        known_for_department: Production
                        name: Peter Gould
                        original_name: Peter Gould
                        popularity: 14.514
                        profile_path: /a2dJSpUiXQ2NAxqSzztr6WsnhOJ.jpg
                      - adult: false
                        credit_id: 6418a1a7a14bef00b815158a
                        department: Costume & Make-Up
                        gender: 1
                        id: 1537674
                        job: Costume Design
                        known_for_department: Costume & Make-Up
                        name: Jennifer Bryan
                        original_name: Jennifer Bryan
                        popularity: 4.588
                        profile_path: /oA5QovyVfEG0SUIs0DIhGsriyok.jpg
                      - adult: false
                        credit_id: 5254228d760ee31328001cc7
                        department: Production
                        gender: 2
                        id: 17419
                        job: Producer
                        known_for_department: Acting
                        name: Bryan Cranston
                        original_name: Bryan Cranston
                        popularity: 54.354
                        profile_path: /7Jahy5LZX2Fo8fGJltMreAI49hC.jpg
                      - adult: false
                        credit_id: 6449841d05a53304be1b880d
                        department: Production
                        gender: 2
                        id: 1930718
                        job: Location Manager
                        known_for_department: Production
                        name: Christian Diaz de Bedoya
                        original_name: Christian Diaz de Bedoya
                        popularity: 0.576
                        profile_path: /jgELIZ1msexaFvFHUePDvvZpFRr.jpg
                      - adult: false
                        credit_id: 64189dcea14bef008100712b
                        department: Production
                        gender: 1
                        id: 1223199
                        job: Co-Executive Producer
                        known_for_department: Production
                        name: Melissa Bernstein
                        original_name: Melissa Bernstein
                        popularity: 3.742
                        profile_path: /rSztwqMUIko8RkmwjxBse1XDW3g.jpg
                      - adult: false
                        credit_id: 64189f7aa14bef0099c8395a
                        department: Production
                        gender: 2
                        id: 3970747
                        job: Associate Producer
                        known_for_department: Production
                        name: Andrew Ortner
                        original_name: Andrew Ortner
                        popularity: 0.323
                        profile_path: null
                      - adult: false
                        credit_id: 64189d742b8a4300b8d57ca9
                        department: Production
                        gender: 1
                        id: 1223202
                        job: Producer
                        known_for_department: Production
                        name: Diane Mercer
                        original_name: Diane Mercer
                        popularity: 5.254
                        profile_path: null
                      - adult: false
                        credit_id: 64189e12a14bef00b81514a9
                        department: Production
                        gender: 2
                        id: 1223194
                        job: Co-Executive Producer
                        known_for_department: Writing
                        name: Sam Catlin
                        original_name: Sam Catlin
                        popularity: 5.631
                        profile_path: /xc9Ax2kpvQLayUaFL1d1NTUQ7df.jpg
                      - adult: false
                        credit_id: 64189e5f6a2227008de8d147
                        department: Production
                        gender: 1
                        id: 29779
                        job: Executive Producer
                        known_for_department: Directing
                        name: Michelle MacLaren
                        original_name: Michelle MacLaren
                        popularity: 12.156
                        profile_path: /3LcH5eNiysMWaepARllVrS4Dzn7.jpg
                      - adult: false
                        credit_id: 64634c54ef8b3200fe7e825f
                        department: Crew
                        gender: 2
                        id: 4065202
                        job: Thanks
                        known_for_department: Crew
                        name: Richard Berry
                        original_name: Richard Berry
                        popularity: 0.349
                        profile_path: null
                      - adult: false
                        credit_id: 539980a1c3a3681d0d00148b
                        department: Art
                        gender: 2
                        id: 12706
                        job: Production Design
                        known_for_department: Art
                        name: Mark S. Freeborn
                        original_name: Mark S. Freeborn
                        popularity: 1.306
                        profile_path: null
                      - adult: false
                        credit_id: 644465ffd38b580521114ec4
                        department: Production
                        gender: 2
                        id: 1537675
                        job: Casting Associate
                        known_for_department: Production
                        name: Russell Scott
                        original_name: Russell Scott
                        popularity: 1.453
                        profile_path: null
                      - adult: false
                        credit_id: 64189d12310325010151b7b7
                        department: Production
                        gender: 2
                        id: 1223200
                        job: Producer
                        known_for_department: Production
                        name: Stewart Lyons
                        original_name: Stewart Lyons
                        popularity: 1.236
                        profile_path: /dCAN4EMn8rsqALwDIjf9aNjuVTm.jpg
                      - adult: false
                        credit_id: 539980c8c3a3681d0700143a
                        department: Art
                        gender: 2
                        id: 1330079
                        job: Art Direction
                        known_for_department: Art
                        name: Bjarne Sletteland
                        original_name: Bjarne Sletteland
                        popularity: 1.296
                        profile_path: null
                      - adult: false
                        credit_id: 52b7008819c29559eb03dd72
                        department: Sound
                        gender: 2
                        id: 1280070
                        job: Original Music Composer
                        known_for_department: Sound
                        name: Dave Porter
                        original_name: Dave Porter
                        popularity: 3.538
                        profile_path: /flRW9QknVtU8HG7lLjMvflbhl2a.jpg
                      - adult: false
                        credit_id: 64446643cee2f604f336e877
                        department: Production
                        gender: 1
                        id: 959387
                        job: Casting
                        known_for_department: Production
                        name: Sherry Thomas
                        original_name: Sherry Thomas
                        popularity: 5.041
                        profile_path: null
                      - adult: false
                        credit_id: 6444663ccee2f6049f36d7d3
                        department: Production
                        gender: 1
                        id: 6479
                        job: Casting
                        known_for_department: Production
                        name: Sharon Bialy
                        original_name: Sharon Bialy
                        popularity: 18.3
                        profile_path: /uOex6LpaQYncD0sQfVYD1frI5uJ.jpg
                      - adult: false
                        credit_id: 52542287760ee31328001af1
                        department: Production
                        gender: 2
                        id: 66633
                        job: Executive Producer
                        known_for_department: Writing
                        name: Vince Gilligan
                        original_name: Vince Gilligan
                        popularity: 24.349
                        profile_path: /z3E0DhBg1V1PZVEtS9vfFPzOWYB.jpg
                      - adult: false
                        credit_id: 64634e45e3fa2f00e404a628
                        department: Sound
                        gender: 2
                        id: 1069688
                        job: Music Supervisor
                        known_for_department: Sound
                        name: Thomas Golubić
                        original_name: Thomas Golubić
                        popularity: 1.344
                        profile_path: /umzkpmX3p3GdrSutAHFX7Rij0Sm.jpg
                      - adult: false
                        credit_id: 52542287760ee31328001b69
                        department: Production
                        gender: 2
                        id: 5162
                        job: Executive Producer
                        known_for_department: Production
                        name: Mark Johnson
                        original_name: Mark Johnson
                        popularity: 16.405
                        profile_path: /gLuXkOQjqB81aHMGJ2OtYzEpHQu.jpg
                      - adult: false
                        credit_id: 644986702fdec604e4a1236a
                        department: Sound
                        gender: 2
                        id: 1537682
                        job: Supervising Sound Editor
                        known_for_department: Sound
                        name: Kurt Nicholas Forshager
                        original_name: Kurt Nicholas Forshager
                        popularity: 1.088
                        profile_path: null
                      - adult: false
                        credit_id: 6450485343501100ea397cba
                        department: Crew
                        gender: 2
                        id: 1537690
                        job: Stunt Coordinator
                        known_for_department: Crew
                        name: Al Goto
                        original_name: Al Goto
                        popularity: 20.084
                        profile_path: /sJEtjLwLdqhY3soar4BflPBDpZu.jpg
                    id: 3578

````