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/leadsQuery parameters
chatbotId(required)startDate/endDate(optional) — YYYY-MM-DDpage(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