cURL
curl --request GET \ --url https://api.themoviedb.org/3/account/{account_id}/lists \ --header 'Authorization: Bearer <token>'
{ "page": 1, "results": [], "total_pages": 0, "total_results": 0 }
This endpoint is used to get a users list of custom lists.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the account to retrieve.
Defaults to 1
The session ID for user authentication.
Successful
Indicates the current page number
Contains the list of data or items
Specifies the total number of pages available
Represents the total number of items or records in a dataset