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

Authorizations

Authorization
string
header
required

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

Query Parameters

session_id
string

A unique identifier for an authenticated user session. Usually used for user authentication

Example:

"02a0e6d34dbd8325254e83c78918599076a62b0e"

api_key
string

A unique api-key for your TMDB account

Example:

"102e76380d3cbdef2f6643787f9236fb"

Response

200 - application/json

Request successful

The response is of type object.