> ## 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 public details of user's account.



## OpenAPI

````yaml get /3/account/{account_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/account/{account_id}:
    parameters:
      - name: account_id
        in: path
        required: true
        schema:
          type: integer
        description: user's account id
    get:
      tags:
        - ACCOUNT
      summary: Details
      description: This endpoint get the public details of user's account.
      operationId: details
      parameters:
        - name: session_id
          in: query
          schema:
            type: string
          description: session ID for authentication or tracking purposes
      responses:
        '200':
          description: Details
          content:
            application/json:
              schema:
                type: object
                properties:
                  avatar:
                    type: object
                    properties:
                      gravatar:
                        type: object
                        properties:
                          hash:
                            type: string
                            example: 206e7620da66d278de7842ce5de26237
                      tmdb:
                        type: object
                        properties:
                          avatar_path:
                            nullable: true
                            example: null
                  id:
                    type: number
                    example: 21707059
                  include_adult:
                    type: boolean
                    example: false
                  iso_3166_1:
                    type: string
                    example: NG
                  iso_639_1:
                    type: string
                    example: en
                  name:
                    type: string
                    example: ''
                  username:
                    type: string
                    example: Ileolami
              examples:
                Details:
                  value:
                    avatar:
                      gravatar:
                        hash: 206e7620da66d278de7842ce5de26237
                      tmdb:
                        avatar_path: null
                    id: 21707059
                    include_adult: false
                    iso_3166_1: NG
                    iso_639_1: en
                    name: ''
                    username: Ileolami
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````