menu
Get announcement stats
Returns aggregated delivery stats for one announcement: messages sent, opens, and unsubscribes. An expensive aggregation - cache the result rather than polling it.
Endpoint
GET https://api.sendstreak.com/v2/accounts/{accountId}/announcements/{announcementId}/stats
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
announcementId | string |
Response
Sent / opened / unsubscribed counts.
{
"sent": 1200,
"opened": 460,
"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/announcements/YOUR_ANNOUNCEMENT_ID/stats' \
--header 'Authorization: Bearer YOUR_API_TOKEN'