logo
AnalyticsWorkspace analytics overview

Workspace analytics overview

Returns aggregate email stats across all campaigns in the workspace. Includes totals for sent, opened, clicked, bounced, replied, and positive replied emails, plus campaign counts and calculated rates (as percentages with 1 decimal). Positive replies are determined by the workspace's AI tagging settings — leads tagged with labels marked as isPositive are counted.

curl -X GET "https://api.sendkit.ai/v1/analytics/overview" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "totalSent": 12500,
    "totalOpened": 5625,
    "totalClicked": 1250,
    "totalBounced": 375,
    "totalReplied": 625,
    "totalPositiveReplied": 312,
    "totalCampaigns": 8,
    "activeCampaigns": 3,
    "bySequence": {
      "main": {
        "sent": 11000,
        "opened": 4950,
        "clicked": 1100,
        "bounced": 330
      },
      "subsequence": {
        "sent": 1500,
        "opened": 675,
        "clicked": 150,
        "bounced": 45
      }
    },
    "rates": {
      "open": "45.0",
      "click": "10.0",
      "reply": "5.0",
      "positiveReply": "2.5",
      "bounce": "3.0"
    }
  }
}
GET
/v1/analytics/overview
GET
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

Responses

successboolean
dataobject