Get a single lead
Leads
Get a single lead
Get detailed information about a specific lead
Returns full lead data including email interaction history and any replies received from the lead.
Example
import requests
campaign_id = "550e8400-e29b-41d4-a716-446655440000"
lead_id = "650e8400-e29b-41d4-a716-446655440000"
response = requests.get(
f"https://api.coldsend.io/api/public/v1/campaigns/{campaign_id}/leads/{lead_id}",
headers={"X-API-Key": "your-api-key"}
)
print(response.json())
GET
Get a single lead
Authorizations
API key with format cs_live_xxx
Response
Lead retrieved successfully
Detailed response schema for individual lead with interaction history.
Lead ID
Lead email address
First name
Last name
Company name
Lead status
Last contact timestamp
Email opened timestamp
Reply timestamp
Lead creation timestamp
Custom lead fields
Current sequence step
Whether email was opened
Whether lead replied
Whether lead unsubscribed
Delivery status from Azure (latest email)
List of email interactions
List of replies from the lead

