Check domain blacklist status
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data domain=example.comimport requests
url = "https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check"
payload = { "domain": "example.com" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Authorization: 'Bearer <token>',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({domain: 'example.com'})
};
fetch('https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check"
payload := strings.NewReader("domain=example.com")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"status": "success",
"data": {
"domain": "example.com",
"results": {
"listed": 0,
"unlisted": 17,
"errors": 0
},
"check_results": [
{
"rbl": "Spamhaus DBL",
"status": "Unlisted"
}
]
}
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}Email
Check domain blacklist status
Checks if a domain is listed on major email blacklists (DBLs). Helps identify reputation issues that may affect email deliverability.
POST
/
generic
/
email
/
domain-blacklist-check
Check domain blacklist status
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data domain=example.comimport requests
url = "https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check"
payload = { "domain": "example.com" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Authorization: 'Bearer <token>',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({domain: 'example.com'})
};
fetch('https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://apix.spotzee.com/api/ext/generic/email/domain-blacklist-check"
payload := strings.NewReader("domain=example.com")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"status": "success",
"data": {
"domain": "example.com",
"results": {
"listed": 0,
"unlisted": 17,
"errors": 0
},
"check_results": [
{
"rbl": "Spamhaus DBL",
"status": "Unlisted"
}
]
}
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}{
"status": "error",
"error": "Invalid request parameters"
}Authorizations
Bearer token authentication. Use format: Bearer YOUR_API_KEY
Body
application/x-www-form-urlencoded
Response
Successfully checked domain blacklist status
Indicates successful operation
Available options:
success Hide child attributes
Hide child attributes
The domain that was checked
Example:
"example.com"
Was this page helpful?
⌘I