GET
/
account
/
{account_id}
curl --request GET \
  --url https://api.themoviedb.org/3/account/%7B{account_id}%7D \
  --header 'Authorization: Bearer <token>'
{
  "avatar": {
    "gravatar": {
      "hash": "d8e7ab380b24aa719550afc74af16883"
    },
    "tmdb": {
      "avatar_path": null
    }
  },
  "id": 21678843,
  "include_adult": false,
  "iso_3166_1": "NG",
  "iso_639_1": "en",
  "name": "",
  "username": "devliz"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
string
required

Query Parameters

session_id
string

The user session ID created

Example:

"string"

Response

200 - application/json

account details

The response is of type object.