Skip to main content
GET
/
api
/
analytics
/
daily
Daily Breakdown
curl --request GET \
  --url https://app.replyify.ai/api/analytics/daily \
  --header 'Authorization: Bearer <token>'
Returns an array of objects — one per day in the requested range — with conversations, reply counts, speed-to-lead metrics, and category breakdowns. 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/daily?start_date=2025-03-01&end_date=2025-03-07" \
  -H "Authorization: Bearer rpl_your_api_key"

Response Example

{
  "data": [
    {
      "date": "2025-03-01",
      "total_replies": 24,
      "conversations": 18,
      "sent": 12,
      "positive": 6,
      "meetings_booked": 2,
      "booking_rate": 33.33,
      "avg_reply_speed_minutes": 4.52,
      "avg_auto_reply_speed_minutes": 1.23,
      "avg_manual_reply_speed_minutes": 14.87,
      "category_breakdown": [
        { "category": "Interested", "slug": "interested", "count": 6 },
        { "category": "Not Interested", "slug": "not-interested", "count": 5 },
        { "category": "Out of Office", "slug": "ooo", "count": 4 },
        { "category": "Meeting Booked", "slug": "meeting-booked", "count": 2 },
        { "category": "Uncategorized", "slug": "uncategorized", "count": 1 }
      ]
    },
    {
      "date": "2025-03-02",
      "total_replies": 0,
      "conversations": 0,
      "sent": 0,
      "positive": 0,
      "meetings_booked": 0,
      "booking_rate": 0,
      "avg_reply_speed_minutes": null,
      "avg_auto_reply_speed_minutes": null,
      "avg_manual_reply_speed_minutes": null,
      "category_breakdown": []
    }
  ]
}

Response Fields

FieldTypeDescription
datestringThe date (YYYY-MM-DD)
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 for that day