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

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

This represents your account_id. Get it here

Query Parameters

session_id
string

This represents your session ID. Get it here

Example:

"6c8994060cf089b2d444fd0ceee13699fa354196"

Response

200 - application/json

Account details

The response is of type object.