Get send statistics
Day-by-day counters across the rolling window. Account-wide by
default; pass config_set_id to scope to a specific configuration
set.
GET /api/v1/partner/email/statsQuery parameters
| Field | Type | Notes |
|---|---|---|
days | int | 1-90, default 14 |
config_set_id | uuid | Scope to one config set instead of account-wide |
Response
{
"success": true,
"stats": [
{
"day_bucket": "2026-05-03",
"send_count": 1247,
"delivered_count": 1213,
"bounced_count": 21,
"complained_count": 2,
"opened_count": 412,
"clicked_count": 87,
"rejected_count": 11
},
{
"day_bucket": "2026-05-02",
"send_count": 1102,
...
}
],
"days": 14
}Days with zero sends are present in the array (with all counts zero) so you don’t have to fill gaps client-side.
cURL
curl 'https://apis.splashifypro.com/api/v1/partner/email/stats?days=30' \
-H "Authorization: Bearer $SPLASHIFY_API_KEY"Per-config-set:
curl 'https://apis.splashifypro.com/api/v1/partner/email/stats?days=14&config_set_id=cs_...' \
-H "Authorization: Bearer $SPLASHIFY_API_KEY"