Analytics
Get Campaign Metrics
Retrieve engagement metrics for a specific campaign.
GET
Get Campaign Metrics
Returns engagement metrics (sends, deliveries, bounces, opens, clicks, unsubscribes) for a single campaign. Optionally filter by 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/campaigns/{campaignId}/stats is kept as a backward-compatible alias for this endpoint.
Path Parameters
The ID of the campaign.
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). Must be used with
end.End of custom time range (ISO 8601). 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 |
bounced | number | Emails that bounced |
opened | number | Unique opens |
clicked | number | Unique clicks |
unsubscribed | number | Unsubscribes |
deliveryRate | number | Delivery rate percentage |
bounceRate | number | Bounce rate percentage |
openRate | number | Open rate percentage |
clickRate | number | Click rate percentage |
unsubscribeRate | number | Unsubscribe rate percentage |
Common Queries
How did our February newsletter perform?
How many opens in the first 24 hours after send?
Compare campaign performance over a specific week
Who opened or clicked in this campaign?
Use the Get Recipients endpoint with acampaignId filter to see individual recipient engagement:
Responses
Get Campaign Metrics