Get reputation
Returns the rolling 14-day bounce + complaint rate plus the
classified reputation status. Equivalent to AWS SES
GetAccountReputation.
GET /api/v1/partner/email/reputationResponse
{
"success": true,
"window_days": 14,
"sent": 12500,
"bounced": 218,
"complained": 4,
"bounce_rate": 0.01744,
"complaint_rate": 0.00032,
"status": "HEALTHY"
}Status thresholds
bounce > 10% OR complaint > 0.5% → PAUSED
bounce > 5% OR complaint > 0.1% → AT_RISK
else → HEALTHYPAUSED triggers automatic sending halt — /send returns
403 SENDING_PAUSED. See Reputation
for recovery steps.
cURL
curl https://apis.splashifypro.com/api/v1/partner/email/reputation \
-H "Authorization: Bearer $SPLASHIFY_API_KEY"