GET /api/v1/public/lead-lists/

List lead lists accessible with your API key. The REST import endpoints accept an array named leads, where each lead supports the fields documented in the lead import pages.
  • Auth: X-API-Key
curl -H "X-API-Key: <key>" \
  "https://api.seleqt.ai/api/v1/public/lead-lists/"

POST /api/v1/public/lead-lists/

Create a new lead list.
  • Auth: X-API-Key
  • Body
{ "name": "Warm inbound leads" }
Response
{
  "success": true,
  "lead_list": {
    "id": 123,
    "name": "Warm inbound leads",
    "description": "",
    "total_prospects": 0,
    "status": "DRAFT",
    "created_at": "2025-06-09T11:22:33Z",
    "updated_at": "2025-06-09T11:22:33Z"
  }
}