Skip to main content
GET
/
api
/
analytics
/
totals
Totals
curl --request GET \
  --url https://app.replyify.ai/api/analytics/totals \
  --header 'Authorization: Bearer <token>'
Returns a single object with totals across the entire requested date range — conversations, replies sent, positive leads, meetings booked, speed-to-lead averages, and a category breakdown. Conversations are deduplicated by thread so each unique conversation is counted once. Speed metrics use all replies (not deduplicated).

Query Parameters

start_date
string
required
Start of date range in YYYY-MM-DD format
end_date
string
required
End of date range in YYYY-MM-DD format
client_id
string
Filter to a specific client UUID

Examples

curl -X GET "https://app.replyify.ai/api/analytics/totals?start_date=2025-03-01&end_date=2025-03-31" \
  -H "Authorization: Bearer rpl_your_api_key"

Response Example

{
  "data": {
    "start_date": "2025-03-01",
    "end_date": "2025-03-31",
    "total_replies": 342,
    "conversations": 218,
    "sent": 156,
    "positive": 74,
    "meetings_booked": 23,
    "booking_rate": 31.08,
    "avg_reply_speed_minutes": 6.41,
    "avg_auto_reply_speed_minutes": 1.15,
    "avg_manual_reply_speed_minutes": 18.23,
    "category_breakdown": [
      { "category": "Interested", "slug": "interested", "count": 74 },
      { "category": "Not Interested", "slug": "not-interested", "count": 62 },
      { "category": "Out of Office", "slug": "ooo", "count": 38 },
      { "category": "Meeting Booked", "slug": "meeting-booked", "count": 23 },
      { "category": "Bounce", "slug": "bounce", "count": 12 },
      { "category": "Uncategorized", "slug": "uncategorized", "count": 9 }
    ]
  }
}

Response Fields

FieldTypeDescription
start_datestringStart of the queried range
end_datestringEnd of the queried range
total_repliesnumberRaw inbound reply count (not deduplicated)
conversationsnumberUnique conversations (deduplicated by thread)
sentnumberResponses sent or handled
positivenumberInterested / positive leads
meetings_bookednumberReplies categorized as “meeting-booked”
booking_ratenumberPercentage of positive replies that booked a meeting
avg_reply_speed_minutesnumber | nullAverage time to reply (all replies)
avg_auto_reply_speed_minutesnumber | nullAverage time for automated replies
avg_manual_reply_speed_minutesnumber | nullAverage time for manual replies
category_breakdownarrayCount per category, sorted by count descending