Get Domain Analytics
Retrieve aggregate totals, a daily timeline, and top service providers for a domain.
Retrieve aggregate sending totals, a daily timeline, and the top service providers for a domain.
Scope: domains.analytics.read
Path Parameters
domain_idintegerrequiredThe ID of the domain.
Response
aggregateobjectoptionalAggregate totals: delivered, bounced, opens, clicks, suppressions.
timelinearrayoptionalDaily timeline entries, each with a date and a totals object.
service_providersarrayoptionalTop service providers, each with a name and count.
Sample Response
200 OK
{
"data": {
"aggregate": {
"delivered": 500,
"bounced": 5,
"opens": 300,
"clicks": 90,
"suppressions": 2
},
"timeline": [
{
"date": "2026-06-28",
"totals": {
"delivered": 50,
"bounced": 1,
"opens": 30,
"clicks": 9,
"suppressions": 0
}
}
],
"service_providers": [
{ "name": "Gmail", "count": 320 },
{ "name": "Outlook", "count": 110 }
]
}
}