SendStreak logo
menu

Get daily message stats

Returns a per-day email delivery roll-up for the last month: sent, opened, bounced, failed, and unsubscribe counts. An expensive aggregation - cache the result rather than polling it.

Endpoint

GET https://api.sendstreak.com/v2/accounts/{accountId}/messages/stats

All v2 endpoints require a bearer token - see Authentication.

Path parameters

Parameter Type Description
accountId string The account the request is scoped to.

Response

Per-day message stats.

[
  {
    "day": "2026-07-07T09:30:00.000Z",
    "bounceBlocked": 2,
    "bounced": 3,
    "failed": 1,
    "opened": 460,
    "sent": 1200,
    "unsubscribed": 12
  }
]

Errors

Status Description
401 Missing or invalid token, or the token is not authorized for this account/user.

See Errors and rate limits for what error responses look like.

Curl example

curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/messages/stats' \
--header 'Authorization: Bearer YOUR_API_TOKEN'
Try SendStreak for Free now!