Skip to main content
GET
/
v2.0
/
sales-agents
/
working-lead
/
{leadId}
Check if lead is a working lead
curl --request GET \
  --url https://api.lofty.com/v2.0/sales-agents/working-lead/{leadId} \
  --header 'Authorization: <authorization>'
{
  "leadId": 12345,
  "firstName": "Jane",
  "lastName": "Smith",
  "email": "jane.smith@example.com",
  "phone": "+1234567890",
  "createdAt": "2026-02-20T10:00:00Z"
}

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]

Path Parameters

leadId
integer<int64>
required

Lead ID

Response

Working lead status retrieved successfully

Working lead information

leadId
integer<int64>

Lead ID

Example:

12345

firstName
string

First name

Example:

"Jane"

lastName
string

Last name

Example:

"Smith"

email
string

Email address

Example:

"jane.smith@example.com"

phone
string

Phone number

Example:

"+1234567890"

createdAt
string

Created timestamp (ISO8601)

Example:

"2026-02-20T10:00:00Z"