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"
}
]
}
}Checks if a domain is listed on major email blacklists (DBLs). Helps identify reputation issues that may affect email deliverability.
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"
}
]
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
Successfully checked domain blacklist status
Indicates successful operation
success Hide child attributes
The domain that was checked
"example.com"
Was this page helpful?