ACCOUNT
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
Endpoints
Lists
This endpoint gets a users list of custom lists.
GET
/
3
/
account
/
{account_id}
/
lists
Copy
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/lists \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [],
"total_pages": 0,
"total_results": 0
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Lists
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/lists \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [],
"total_pages": 0,
"total_results": 0
}
Assistant
Responses are generated using AI and may contain mistakes.