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

# Details

> This endpoint get the public details of an account on TMDB.



## OpenAPI

````yaml api-reference/openapi3.json get /3/account/{account_id}
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/account/{account_id}:
    get:
      tags:
        - ACCOUNT
      summary: Details
      description: This endpoint get the public details of an account on TMDB.
      operationId: details
      parameters:
        - $ref: '#/components/parameters/session_id'
        - $ref: '#/components/parameters/account_id'
      responses:
        '200':
          description: Details
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=0
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Sun, 15 Dec 2024 16:22:17 GMT
            ETag:
              schema:
                type: string
                example: W/"002db8c9645274b8cffcb39918f2a5a5"
            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 157ebd6865840045fc8b5ed1cce7e466.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: HhpFDpGT2wLybwzRsTXMxQ2hl_k4xqDFscCiOQ2KA5qYm35V8f7Xbw==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: RefreshHit from cloudfront
            x-memc:
              schema:
                type: string
                example: MISS
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '0'
            x-memc-key:
              schema:
                type: string
                example: 83290fb3588f38f4ad098888fb0afc23
          content:
            application/json:
              schema:
                type: object
                properties:
                  avatar:
                    type: object
                    properties:
                      gravatar:
                        type: object
                        properties:
                          hash:
                            type: string
                            example: cd970d75df1eba28fca571453d833a6d
                            description: >-
                              A unique hash representing the user's Gravatar
                              profile. This hash is based on the user's email
                              address and is used to retrieve the avatar image
                              associated with it
                      tmdb:
                        type: object
                        properties:
                          avatar_path:
                            nullable: true
                            example: null
                            description: >-
                              The path to the user's avatar image on TMDB
                              servers.
                  id:
                    type: number
                    example: 38902467
                    description: A unique identifier for the user account.
                  include_adult:
                    type: boolean
                    example: false
                    description: >-
                      A boolean indicating whether adult content should be
                      included in the user's profile or preferences (false means
                      adult content is excluded).
                  iso_3166_1:
                    type: string
                    example: NG
                    description: A code representing the country of the user
                  iso_639_1:
                    type: string
                    example: en
                    description: A code representing the primary language of the user
                  name:
                    type: string
                    example: Travis Bell
                    description: The full name of the user.
                  username:
                    type: string
                    example: travisbell
                    description: >-
                      The username of the account, used for login and profile
                      identification.
              examples:
                Details:
                  value:
                    avatar:
                      gravatar:
                        hash: cd970d75df1eba28fca571453d833a6d
                      tmdb:
                        avatar_path: null
                    id: 38902467
                    include_adult: false
                    iso_3166_1: NG
                    iso_639_1: en
                    name: Travis Bell
                    username: travisbell
components:
  parameters:
    session_id:
      name: session_id
      in: query
      description: >-
        A token that represents a logged-in user's session after they have
        authenticated with their TMDB account.
      schema:
        type: string
        example: ''
    account_id:
      name: account_id
      in: path
      required: true
      description: This refers to a unique identifier assigned to a user account.
      schema:
        type: integer
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````