Skip to main content
GET
/
api
/
v1
/
search-email-leads
/
reply-analytics
curl -X GET "https://prospect-api.smartlead.ai/api/v1/search-email-leads/reply-analytics?api_key=YOUR_API_KEY"
{
  "success": true,
  "message": "Data retrieved successfully",
  "data": {
    "currentMonth": { "replied": 150 },
    "previousMonth": { "replied": 120 },
    "percentage_change": "+25%",
    "trend": "increase"
  }
}
This endpoint requires authentication via API key passed as a query parameter (api_key).

Query Parameters

api_key
string
required
Your SmartLead API key for authentication
curl -X GET "https://prospect-api.smartlead.ai/api/v1/search-email-leads/reply-analytics?api_key=YOUR_API_KEY"

Response Codes

200
Success
Request successful
401
Unauthorized
Unauthorized
500
Internal Server Error
Internal Server Error
{
  "success": true,
  "message": "Data retrieved successfully",
  "data": {
    "currentMonth": { "replied": 150 },
    "previousMonth": { "replied": 120 },
    "percentage_change": "+25%",
    "trend": "increase"
  }
}