Skip to main content
GET
/
api
/
v1
/
sequences
/
{sequenceId}
/
stats
Get Sequence Stats
curl --request GET \
  --url https://api.sequenzy.com/api/v1/sequences/{sequenceId}/stats \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "sequenceId": "seq_abc123",
  "period": "7d",
  "stats": {
    "sent": 120,
    "delivered": 118,
    "opened": 72,
    "clicked": 18,
    "unsubscribed": 1,
    "deliveryRate": 98.33,
    "openRate": 61.02,
    "clickRate": 15.25,
    "unsubscribeRate": 0.85
  },
  "steps": []
}

Get Sequence Stats

Returns aggregated engagement metrics and per-step metrics for a sequence. You can also use GET /api/v1/metrics/sequences/{sequenceId}.

Request

sequenceId
string
required
Sequence ID.
period
string
Sliding time window: 1h, 24h, 7d, 30d, or 90d.
start
string
Custom range start as an ISO 8601 date-time. Use with end.
end
string
Custom range end as an ISO 8601 date-time. Use with start.
curl "https://api.sequenzy.com/api/v1/sequences/seq_abc123/stats?period=7d" \
  -H "Authorization: Bearer seq_live_xxx"

Responses

{
  "success": true,
  "sequenceId": "seq_abc123",
  "period": "7d",
  "stats": {
    "sent": 120,
    "delivered": 118,
    "opened": 72,
    "clicked": 18,
    "unsubscribed": 1,
    "deliveryRate": 98.33,
    "openRate": 61.02,
    "clickRate": 15.25,
    "unsubscribeRate": 0.85
  },
  "steps": []
}