Skip to main content
GET
/
v2.0
/
working-leads
Query working leads (paginated)
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.

Headers

Authorization
string
required

Bearer [access_token]

Query Parameters

aiStage
string

AI follow-up stage filter (HIGH_PRIORITY, AI_PROSPECTING, AI_MONITORING)

Example:

"AI_PROSPECTING"

limit
string
default:20

Page size (max 100)

Example:

20

offset
string
default:0

Start index of the responded leads

Example:

0

sort
string
default:UpdateTime

Sort field (Default, CreateTime, UpdateTime)

Example:

"UpdateTime"

desc
string
default:true

Descending sort (true) or ascending sort (false)

Example:

true

Response

Working leads retrieved successfully

Working lead list response with pagination

workingLeads
object[]

List of working leads

metadata
object

Pagination metadata