Skip to main content
GET
/
v1
/
lists
List All Lists
curl --request GET \
  --url https://api.example.com/v1/lists
{
  "data": {
    "lists": [
      {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "contact_count": 123,
        "created_at": "<string>",
        "updated_date": "<string>"
      }
    ]
  }
}

Request

Headers

Authorization: Bearer wbk_your_api_key_here

Response

data
object
curl https://nbkxaqxwvkgbddekwsma.supabase.co/functions/v1/api-gateway/v1/lists \
  -H "Authorization: Bearer wbk_your_api_key_here"

Example Response

{
  "data": {
    "lists": [
      {
        "id": "abc12345-678d-90ef-1234-567890abcdef",
        "name": "Outreach Q1 2026",
        "description": "Prospects for Q1 campaign",
        "contact_count": 45,
        "created_at": "2026-01-15T10:00:00Z",
        "updated_date": "2026-02-20T14:30:00Z"
      },
      {
        "id": "def67890-abcd-1234-5678-90abcdef1234",
        "name": "Legal Tech Leads",
        "description": "Law firms interested in automation",
        "contact_count": 120,
        "created_at": "2025-12-01T09:00:00Z",
        "updated_date": "2026-02-24T10:15:00Z"
      }
    ]
  }
}

Errors

StatusCodeDescription
401invalid_keyInvalid API key
403insufficient_permissionsMissing read permission
429rate_limitedRate limit exceeded