curl --request POST \
--url https://app.spotzee.com/api/ext/generic/email/ip-blacklist-check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data ipv4=192.168.1.1 \
--data ipv6=2001:0db8:85a3:0000:0000:8a2e:0370:7334 \
--data type=popular{
"status": "success",
"data": {
"ip_address": "192.0.2.1",
"results": {
"listed": 5,
"unlisted": 3,
"errors": 0
},
"check_results": [
{
"rbl": "Spamhaus ZEN",
"status": "Listed"
}
]
}
}Checks if an IPv4 or IPv6 address is listed on major email blacklists (RBLs). Supports checking against popular blacklists or comprehensive list. Essential for email deliverability diagnostics.
curl --request POST \
--url https://app.spotzee.com/api/ext/generic/email/ip-blacklist-check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data ipv4=192.168.1.1 \
--data ipv6=2001:0db8:85a3:0000:0000:8a2e:0370:7334 \
--data type=popular{
"status": "success",
"data": {
"ip_address": "192.0.2.1",
"results": {
"listed": 5,
"unlisted": 3,
"errors": 0
},
"check_results": [
{
"rbl": "Spamhaus ZEN",
"status": "Listed"
}
]
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
IPv4 address to check (provide either IPv4 or IPv6, not both)
"192.168.1.1"
IPv6 address to check (provide either IPv4 or IPv6, not both)
"2001:0db8:85a3:0000:0000:8a2e:0370:7334"
Type of blacklist check: full (comprehensive) or popular (common blacklists only)
full, popular "popular"
Successfully checked IP blacklist status
Indicates successful operation
success Hide child attributes
The IP address that was checked
"192.0.2.1"
Was this page helpful?