Analytics
Get Account Metrics
Retrieve aggregated email engagement metrics across all campaigns and sequences.
GET
Get Account Metrics
Returns aggregated email engagement metrics (sends, deliveries, bounces, opens, clicks, unsubscribes) across your entire account for a given time period. Test sends are excluded from these performance metrics by default so previews do not skew results, but they still count toward send usage and quota. Open and click metrics also exclude detected email-security scanners and tracked brand assets by default.
Check the
Check the
Useful for daily monitoring dashboards or Slack alerts.
Fixed ranges are idempotent — safe to retry without double-counting.
GET /api/v1/stats is kept as a backward-compatible alias for this endpoint.
Query Parameters
Sliding time window. One of:
1h, 24h, 7d, 30d, 90d. Ignored when
start and end are provided.Start of custom time range (ISO 8601, e.g.
2026-02-01T00:00:00Z). Must be
used with end.End of custom time range (ISO 8601, e.g.
2026-02-14T00:00:00Z). Must be used
with start. Max range: 90 days.Set to
true to include detected scanner, preview, and tracked asset
open/click events in engagement metrics.Response Fields
| Field | Type | Description |
|---|---|---|
sent | number | Emails sent in the period |
delivered | number | Emails delivered (capped at sent) |
bounced | number | Emails that bounced |
opened | number | Unique opens (deduplicated by email send) |
clicked | number | Unique clicks (deduplicated by email send) |
unsubscribed | number | Unsubscribes in the period |
deliveryRate | number | Delivery rate percentage (delivered / sent) |
bounceRate | number | Bounce rate percentage (bounced / sent) |
openRate | number | Open rate percentage (opens / delivered) |
clickRate | number | Click rate percentage (clicks / delivered) |
unsubscribeRate | number | Unsubscribe rate percentage (unsubscribes / delivered) |
Common Queries
How many emails did we send in the last 7 days?
sent field in the response.
What’s our overall open rate this month?
openRate field — this is calculated as opens / delivered.
How are we doing in the last 24 hours?
Sync daily metrics to our data warehouse
Use fixed time ranges to pull yesterday’s metrics on a cron schedule:Responses
Get Account Metrics