GET
/
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": "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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

Query Parameters

page
string

what page the query belongs

Example:

"1"

session_id
string

filter by the user session ID

Example:

"string"

Response

200 - application/json

fetch custom playlists

The response is of type object.