Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Account
Details By SessionId
This endpoint retrieves account details by session Id.
GET
/
3
/
account
Copy
curl --request GET \
--url https://api.themoviedb.org/3/account \
--header 'Authorization: Bearer <token>'
Copy
{
"avatar": {
"gravatar": {
"hash": "d3121522dae075799968cc2f2b51cf21"
},
"tmdb": {
"avatar_path": null
}
},
"id": 21308017,
"include_adult": false,
"iso_3166_1": "NG",
"iso_639_1": "en",
"name": "Gloria Tejuosho",
"username": "gloriaSilver"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
200 - application/json
Details By SessionId
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/account \
--header 'Authorization: Bearer <token>'
Copy
{
"avatar": {
"gravatar": {
"hash": "d3121522dae075799968cc2f2b51cf21"
},
"tmdb": {
"avatar_path": null
}
},
"id": 21308017,
"include_adult": false,
"iso_3166_1": "NG",
"iso_639_1": "en",
"name": "Gloria Tejuosho",
"username": "gloriaSilver"
}
Assistant
Responses are generated using AI and may contain mistakes.