Get Application Statistics
Retrieve 30-day daily statistics for an application.
Retrieve 30-day daily statistics for an application. The response is an array of daily entries, each containing the date and aggregate statistics.
Scope: applications.read
Path Parameters
application_idintegerrequiredThe ID of the application.
Response
Returns an array of objects with the following fields:
datestringoptionalThe date in YYYY-MM-DD format.
aggregateobjectoptionalDaily totals: delivered, opens, clicks, bounced, suppressions.
Sample Response
200 OK
{
"data": [
{
"date": "2026-06-28",
"aggregate": {
"delivered": 50,
"bounced": 1,
"opens": 30,
"clicks": 9,
"suppressions": 0
}
}
]
}