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"
}
This endpoint allows you to get the public details of an account on TMDB.
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"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The user session ID created
"string"
account details
The response is of type object
.