Reports
Single Account Report
POST
/v1/reportsPOST
/v1/reports
Get daily warmup report for a single email account
Authorization
X-Api-Key<token>
In: header
Request Body
application/jsonRequiredemailAccountIdnumber
Example: 12345fromstring
Start date (YYYY-MM-DD). Defaults to 30 days before to.
"2026-03-01"tostring
End date (YYYY-MM-DD). Defaults to today.
Example:"2026-03-31"Responses
200
200 response
{
"emailAccountId": 12345,
"from": "2026-03-01",
"to": "2026-03-31",
"days": [
{
"date": "2026-03-15",
"sent": 25,
"inbox": 20,
"received": 22,
"spam": 3,
"bounced": 1,
"undelivered": 0,
"replied": 5,
"deliverabilityRate": 92.5
}
]
}