GET
/
3
/
account
curl --request GET \
  --url https://api.themoviedb.org/3/account \
  --header 'Authorization: Bearer <token>'
{
  "avatar": {
    "gravatar": {
      "hash": "cd970d75df1eba28fca571453d833a6d"
    },
    "tmdb": {
      "avatar_path": null
    }
  },
  "id": 21675250,
  "iso_3166_1": "NG",
  "iso_639_1": "en",
  "include_adult": false,
  "username": "travisbell"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

your_bearer_token
string
required

Your read access token that is used to authenticate requests made to an API

Example:

""

Response

200 - application/json
Details
avatar
object
id
number

A unique identifier for the user account.

Example:

38902467

include_adult
boolean

A boolean indicating whether adult content should be included in the user's profile or preferences (false means adult content is excluded).

Example:

false

iso_3166_1
string

A code representing the country of the user

Example:

"NG"

iso_639_1
string

A code representing the primary language of the user

Example:

"en"

username
string

The username of the account, used for login and profile identification.

Example:

"travisbell"