Skip to main content
GET
/
api
/
v1
/
campaigns
/
all-leads-activities
curl "https://server.smartlead.ai/api/v1/campaigns/all-leads-activities?api_key=YOUR_KEY&limit=100"
{
  "total": 250,
  "data": [
    {
      "lead_email": "john@company.com",
      "campaign_id": 123,
      "campaign_name": "Q1 Outreach",
      "activity_type": "email_opened",
      "event_time": "2025-01-20T14:30:00Z"
    }
  ]
}
Track lead engagement and activities across your entire account. Essential for cross-campaign analytics and lead behavior analysis.

Overview

Retrieves lead activities across ALL campaigns, not just one. Useful for account-wide reporting and analytics.

Query Parameters

api_key
string
required
Your SmartLead API key
offset
number
default:"0"
Pagination offset (min 0)
limit
number
default:"100"
Records per page (min 1, max 1000)
event_time_from
string
Filter activities from this date (ISO 8601)
event_time_to
string
Filter activities until this date (ISO 8601)
curl "https://server.smartlead.ai/api/v1/campaigns/all-leads-activities?api_key=YOUR_KEY&limit=100"

Response Example

{
  "total": 250,
  "data": [
    {
      "lead_email": "john@company.com",
      "campaign_id": 123,
      "campaign_name": "Q1 Outreach",
      "activity_type": "email_opened",
      "event_time": "2025-01-20T14:30:00Z"
    }
  ]
}