Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
senderscore-lookup
Lookup sender score
curl --request POST \
  --url https://app.spotzee.com/api/ext/generic/email/senderscore-lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'ipv4=<string>'
{
  "status": "success",
  "data": {
    "senderscore": 19,
    "rating": "POOR",
    "color": "#cb333b",
    "ss_trend": [
      {
        "timestamp": "1748995200000",
        "value": 59
      },
      {
        "timestamp": "1749081600000",
        "value": 56
      }
    ],
    "ss_volume_trend": [
      {
        "timestamp": "1748995200000",
        "value": 376
      },
      {
        "timestamp": "1749081600000",
        "value": 255
      }
    ],
    "rdns": "mail.example.com.",
    "volume_tier": "HIGH",
    "certified": false,
    "rp_safe": false
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

application/x-www-form-urlencoded
ipv4
string
required

IPv4 address

Response

Successfully retrieved sender score

status
enum<string>
required

Indicates successful operation

Available options:
success
data
object
required