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.Documentation Index
Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
Use this file to discover all available pages before exploring further.
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.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