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

# Details

> This endpoint get the details of a person



## OpenAPI

````yaml get /3/person/{person_id}
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/person/{person_id}:
    parameters:
      - name: person_id
        in: path
        required: true
        schema:
          type: integer
          example: 3453
    get:
      tags:
        - PEOPLE
      summary: Details
      description: This endpoint get the details of a person
      operationId: details9
      parameters:
        - name: append_to_response
          in: query
          schema:
            type: string
            description: >-
              comma separated list of endpoints within this namespace, 20 items
              max
        - name: languages
          in: query
          schema:
            type: string
            default: en-US
      responses:
        '200':
          description: Details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=16761
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:28:41 GMT
            ETag:
              schema:
                type: string
                example: W/"7cddf078c73dc5159c93fa24a92db1ef"
            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 f4f3f118ac6f8aab6b0b8776a3481c6e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: iYZl1BoFWlStfAHpGTx8o46pvqj5E1gQi6CNtgUj8PP795rJLQ9eIA==
            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: '10456'
            x-memc-expires:
              schema:
                type: string
                example: '16761'
            x-memc-key:
              schema:
                type: string
                example: db1d6ca36579bf311f084b722b4c6b62
          content:
            application/json:
              schema:
                type: object
                properties:
                  adult:
                    type: boolean
                    example: false
                  also_known_as:
                    type: array
                    items:
                      type: string
                      example: David Lloyd Wolper
                    example:
                      - David Lloyd Wolper
                  biography:
                    type: string
                    example: >-
                      David L. Wolper was born on January 11, 1928 in New York
                      City, New York, USA as David Lloyd Wolper. He was a
                      producer, known for L.A. Confidential (1997), Willy Wonka
                      &amp; the Chocolate Factory (1971) and Imagine: John
                      Lennon (1988). He was married to Gloria Hill, Dawn Richard
                      and Toni Carroll. He died on August 10, 2010 in Beverly
                      Hills, California, USA.
                  birthday:
                    type: string
                    example: '1928-01-11'
                  deathday:
                    type: string
                    example: '2010-08-10'
                  gender:
                    type: number
                    example: 2
                  homepage:
                    nullable: true
                    example: null
                  id:
                    type: number
                    example: 3453
                  imdb_id:
                    type: string
                    example: nm0938678
                  known_for_department:
                    type: string
                    example: Production
                  name:
                    type: string
                    example: David L. Wolper
                  place_of_birth:
                    type: string
                    example: New York, New York, USA
                  popularity:
                    type: number
                    example: 1.072
                  profile_path:
                    type: string
                    example: /pHCcYBdut3PbNix1NkubLPjaSgJ.jpg
              examples:
                Details:
                  value:
                    adult: false
                    also_known_as:
                      - David Lloyd Wolper
                    biography: >-
                      David L. Wolper was born on January 11, 1928 in New York
                      City, New York, USA as David Lloyd Wolper. He was a
                      producer, known for L.A. Confidential (1997), Willy Wonka
                      &amp; the Chocolate Factory (1971) and Imagine: John
                      Lennon (1988). He was married to Gloria Hill, Dawn Richard
                      and Toni Carroll. He died on August 10, 2010 in Beverly
                      Hills, California, USA.
                    birthday: '1928-01-11'
                    deathday: '2010-08-10'
                    gender: 2
                    homepage: null
                    id: 3453
                    imdb_id: nm0938678
                    known_for_department: Production
                    name: David L. Wolper
                    place_of_birth: New York, New York, USA
                    popularity: 1.072
                    profile_path: /pHCcYBdut3PbNix1NkubLPjaSgJ.jpg
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````