Supports filtering by status, category, email engagement, and date ranges. Returns lead details with custom fields. Maximum 100 leads per page.
Path Parameters
The campaign ID to retrieve leads from
Query Parameters
Pagination offset (minimum: 0)
Number of leads to return per page (minimum: 1, maximum: 100)
Filter by lead status. Valid values: STARTED, INPROGRESS, COMPLETED, PAUSED, STOPPED
Filter by category ID (must be a positive integer)
Filter by email engagement status. Valid values: is_opened, is_clicked, is_replied, is_bounced, is_unsubscribed, is_spam, is_accepted, not_replied, is_sender_bounced
Filter leads created after this ISO 8601 date (e.g., 2025-11-25T00:00:00.000Z)
Filter leads with last email sent after this ISO 8601 date
Filter leads with any activity (sent or reply) after this ISO 8601 date
curl "https://server.smartlead.ai/api/v1/campaigns/123/leads?api_key=YOUR_KEY&limit=50&status=INPROGRESS&emailStatus=is_opened"
Response Fields
Total count of leads matching the filter criteria
The offset used in the request
The limit used in the request
Array of lead objectsShow Lead object properties
Unique identifier for the lead-campaign mapping
Category ID assigned to this lead, or null if uncategorized
Current status of the lead in this campaign. Values: STARTED, INPROGRESS, COMPLETED, PAUSED, STOPPED
ISO 8601 timestamp when the lead was added to the campaign
Lead contact information
Custom fields object containing personalization data
Whether the lead is globally unsubscribed
unsubscribed_client_id_map
Map of client IDs where lead is unsubscribed
Response Codes
Leads retrieved successfully
Invalid or missing API key
Campaign not found or you don’t have access to it
Invalid query parameters (check offset, limit ranges and status values)
{
"total_leads": "42",
"offset": 0,
"limit": 50,
"data": [
{
"campaign_lead_map_id": 2433664091,
"lead_category_id": null,
"status": "INPROGRESS",
"created_at": "2025-11-25T12:54:54.000Z",
"lead": {
"id": 2995276770,
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"phone_number": "+1234567890",
"company_name": "Acme Corp",
"website": "https://acme.com",
"location": "San Francisco, CA",
"linkedin_profile": "https://linkedin.com/in/johndoe",
"company_url": "https://acme.com",
"custom_fields": {
"job_title": "CEO",
"industry": "Technology"
},
"is_unsubscribed": false,
"unsubscribed_client_id_map": null
}
}
]
}