GET Email Performance​
GET
/reports/email-performance
Retrieve aggregated email performance metrics including totals and percentages for sent, delivered, opened, clicked, and bounced emails. The days parameter controls the time window: a positive integer means the last N days, 0 means all time, and omitting it defaults to the last 30 days.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Query Parameters
days
Number of days to look back. Use 0 for all time. Defaults to 30 days if omitted.
Type
integer
Minimum
0Responses​
Email performance metrics retrieved successfully.
application/json
JSON
{
"stats": {
"totals": {
"sent": 0,
"delivered": 0,
"opened": 0,
"clicked": 0,
"bounced": 0
},
"percentages": {
"delivered": 0,
"opened": 0,
"clicked": 0,
"bounced": 0
}
}
}