curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/lists \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"description": "All adventure related movies",
"favorite_count": 0,
"id": 8500719,
"iso_639_1": "en",
"item_count": 1,
"list_type": "movie",
"name": "Adventures",
"poster_path": null
}
],
"total_pages": 1,
"total_results": 1
}
This endpoint allows you to get a user’s list of custom playlists.
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/lists \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"description": "All adventure related movies",
"favorite_count": 0,
"id": 8500719,
"iso_639_1": "en",
"item_count": 1,
"list_type": "movie",
"name": "Adventures",
"poster_path": null
}
],
"total_pages": 1,
"total_results": 1
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
what page the query belongs
"1"
filter by the user session ID
"string"
fetch custom playlists
The response is of type object
.