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
Lists
This endpoint retrieves the list you have created. E.g., your movie list.
GET
/
3
/
account
/
{account_id}
/
lists
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/lists \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"description": "This list contains a list",
"favorite_count": 0,
"id": 8500209,
"iso_639_1": "en",
"item_count": 2,
"list_type": "movie",
"name": "My list",
"poster_path": null
}
],
"total_pages": 1,
"total_results": 1
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Lists
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/lists \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"description": "This list contains a list",
"favorite_count": 0,
"id": 8500209,
"iso_639_1": "en",
"item_count": 2,
"list_type": "movie",
"name": "My list",
"poster_path": null
}
],
"total_pages": 1,
"total_results": 1
}
Assistant
Responses are generated using AI and may contain mistakes.