BetaThe v2 API is in beta — fields and behavior may change without notice. For stable production usage, see the API v1 Reference.

Leads

Get leads for a chatbot

Returns leads captured from the agent — pre-chat form, conversational collection, or booking flow. Filter by date range and paginate.

Endpoint

text
GET https://services.chatmount.co/v2/leads

Query parameters

  • chatbotId (required)
  • startDate / endDate (optional) — YYYY-MM-DD
  • page (default 1), size (default 10)

Response

json
{
  "collectedCustomers": [
    {
      "id": "lead_123",
      "name": "John Doe",
      "email": "john@example.com",
      "phone": "+1234567890",
      "createdAt": "2026-01-01T12:00:00Z",
      "chatbotId": "agent_abc123",
      "accountId": "acc_123abc456"
    }
  ]
}

Related