Get Statistics Timeline
Retrieve daily sending statistics for the last month, with one entry per day.
Retrieve daily sending statistics for the last month. The response is an array of points, one per day, each containing the date and a summary object with aggregate counts and per-country open/click data.
Scope: statistics.read
Response
Returns an array of objects with the following fields:
datestringoptionalThe date in YYYY-MM-DD format.
summaryobjectoptionalContains aggregate (an object with delivered, bounced, opens, clicks, and suppressions as integers) and country_data (a map of country code to an object with opens and clicks counts).
Sample Response
200 OK
{
"data": [
{
"date": "2026-06-28",
"summary": {
"aggregate": {
"delivered": 50,
"bounced": 1,
"opens": 30,
"clicks": 9,
"suppressions": 0
},
"country_data": {
"US": { "opens": 20, "clicks": 6 }
}
}
}
]
}