GET
/
3
/
account
/
{account_id}
curl --request GET \
  --url https://api.themoviedb.org/3/account/{account_id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
integer
required

This refers to a unique identifier assigned to a user account.

Example:

""

Query Parameters

session_id
string

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

Response

200 - application/json

Details

The response is of type object.