Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
domain-blacklist-check
Check domain blacklist status
curl --request POST \
  --url https://app.spotzee.com/api/ext/generic/email/domain-blacklist-check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data domain=example.com
{
  "status": "success",
  "data": {
    "domain": "example.com",
    "results": {
      "listed": 0,
      "unlisted": 17,
      "errors": 0
    },
    "check_results": [
      {
        "rbl": "Spamhaus DBL",
        "status": "Unlisted"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

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

Domain name

Example:

"example.com"

type
enum<string>

Type of blacklist check: full (comprehensive) or popular (common blacklists only)

Available options:
full,
popular
Example:

"popular"

Response

Successfully checked domain blacklist status

status
enum<string>
required

Indicates successful operation

Available options:
success
data
object
required