# Get all lists

You can return a list of all your existing lists.

GET /lists/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H
"Authorization: Token <your_64_char_api_key>"
"https://<your_app_subdomain>.user.com/api/public/lists/"

# Response

{
  "next": "null",
  "count": 3,
  "previous": null,
  "results": [
    {
      "id": 7,
      "name": "New List",
      "description": "This is description for this list"
    },
    {
      "id": 8,
      "name": "Another List",
      "description": "Another description"
    },
    {
      "id": 140,
      "name": "List without description",
      "description": ""
    }
  ]
}