cURL
curl --request GET \ --url 'https://api.themoviedb.org/3/account/{{account_id}}/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 }
This endpoint retrieves the list you have created. E.g., your movie list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents your account ID. Get it here
Lists
1
Show child attributes
[ { "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 }]