Skip to main content
GET
/
v1
/
stats
/
reputation
Get sender reputation metrics
curl --request GET \
  --url https://api.mail.gorillaa.one/v1/stats/reputation \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "metrics": {
      "overallScore": 50,
      "bounceRate": 123,
      "complaintRate": 123,
      "deliveryRate": 123,
      "healthStatus": "excellent"
    },
    "recommendations": [
      "<string>"
    ],
    "domainId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your Gorillaa Mail API key as a Bearer token.

Example: Authorization: Bearer grl_live_xxxxxxxxxxxx

Keys prefixed grl_test_ operate in test mode with reduced limits.

Query Parameters

domain_id
string<uuid>

Filter by specific domain UUID

Response

Reputation metrics

data
object
required