logo
AnalyticsWorkspace analytics overview
Analytics

Workspace analytics overview

Returns aggregate email stats across all campaigns in the workspace. Includes totals for sent, opened, clicked, bounced, and replied emails, plus campaign counts and calculated rates (as percentages with 1 decimal).

curl -X GET "https://api.sendkit.ai/v1/analytics/overview" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "totalSent": 12500,
    "totalOpened": 5625,
    "totalClicked": 1250,
    "totalBounced": 375,
    "totalReplied": 625,
    "totalCampaigns": 8,
    "activeCampaigns": 3,
    "rates": {
      "open": "45.0",
      "click": "10.0",
      "reply": "5.0",
      "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_...)
Bearer Token
Bearer Tokenstring
Required

API key as Bearer token

API key as Bearer token
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_...)

header
Authorizationstring
Required

Bearer token. API key as Bearer token

Responses

successboolean
dataobject