Retrieves a paginated list of leads currently being followed up by AI Sales Agent. Supports filtering by AI stage (HIGH_PRIORITY, AI_PROSPECTING, AI_MONITORING). Returns lead basic info with AI stage, task counts, and timestamps.
curl --request GET \
--url https://api.lofty.com/v2.0/working-leads \
--header 'Authorization: <authorization>'{
"workingLeads": [
{
"leadId": 12345,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"phone": "+1234567890",
"createdAt": "2026-02-20T10:00:00Z"
}
],
"metadata": {
"total": 150,
"count": 20,
"offset": 0,
"limit": 20
}
}Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer [access_token]
AI follow-up stage filter (HIGH_PRIORITY, AI_PROSPECTING, AI_MONITORING)
"AI_PROSPECTING"
Page size (max 100)
20
Start index of the responded leads
0
Sort field (Default, CreateTime, UpdateTime)
"UpdateTime"
Descending sort (true) or ascending sort (false)
true
curl --request GET \
--url https://api.lofty.com/v2.0/working-leads \
--header 'Authorization: <authorization>'{
"workingLeads": [
{
"leadId": 12345,
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"phone": "+1234567890",
"createdAt": "2026-02-20T10:00:00Z"
}
],
"metadata": {
"total": 150,
"count": 20,
"offset": 0,
"limit": 20
}
}