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

# Account ID

> This endpoint get user's account ID



## OpenAPI

````yaml get /3/account
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:
    get:
      tags:
        - ACCOUNT
      summary: Account ID
      description: This endpoint get user's account ID
      operationId: accountId
      responses:
        '200':
          description: Account ID
          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: Wed, 19 Feb 2025 08:09:21 GMT
            ETag:
              schema:
                type: string
                example: W/"95dd4c58e1a99c1431c5f3d9897544d2"
            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 a9f4bdae1135d507d62df475ab78dc5e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: DT5PrRFnsvHiBGKzxwdTbTSwKYnVF3DyYf_MGdUw9Mn-Oj9Q54aMfA==
            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: MISS
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '0'
            x-memc-key:
              schema:
                type: string
                example: b1ab10a1d286ab3a373919adb1e20cae
          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: 21746473
                  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: Mary
              examples:
                Account ID:
                  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

````