Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl "https://server.smartlead.ai/api/v1/leads/789?api_key=YOUR_KEY"
import requests response = requests.get( "https://server.smartlead.ai/api/v1/leads/789", params={"api_key": "YOUR_API_KEY"} ) lead = response.json() print(f"Lead: {lead['email']}") print(f"Status: {lead['status']}") print(f"Category: {lead.get('category_name', 'Uncategorized')}")
{ "id": 789, "email": "john@company.com", "first_name": "John", "last_name": "Doe", "company_name": "ACME Corp", "status": "INPROGRESS", "category_id": 1, "category_name": "Interested", "email_stats": { "is_opened": true, "is_clicked": true, "is_replied": true }, "custom_fields": { "job_title": "CEO" } }
Retrieve detailed information about a specific lead