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

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

This represents your account ID. Get it here

Response

200 - application/json

Lists

The response is of type object.