GET /analytics/reputation-metrics
Returns your sending reputation metrics — bounce rate and complaint rate.
Authentication
JWT (Dashboard) or API Key
Query Parameters
| Parameter | Type | Default | Description |
|---|
domainId | string | — | Filter by domain UUID |
Response
{
"delivered": 1250,
"hardBounced": 12,
"complained": 1,
"bounceRate": 0.96,
"complaintRate": 0.08
}
Rates are percentages. AWS SES recommends:
| Metric | Healthy | Risk |
|---|
| Bounce rate | < 2% | > 5% |
| Complaint rate | < 0.05% | > 0.1% |
High bounce or complaint rates can result in your SES sending being paused by AWS. Monitor these closely.
Example
curl "https://app.usesendi.com/api/analytics/reputation-metrics" \
-H "Authorization: Bearer snd_your_api_key"