Retrieve domain blacklists for an account
Returns the current blacklist check results for the domain of the given account. Each entry represents one blacklist provider and whether the domain (or one of its hosts/IPs) is currently listed. Returns an empty array when the domain is not yet tracked.
Path Parameters
- Type: integerFormat: int32account
_id requiredID of the account whose domain blacklists should be returned.
Responses
- application/json
- application/json
Request Example for get/v1/domain_blacklists/{account_id}
curl http://api.mailreach.co/api/v1/domain_blacklists/1234 \
--header 'X-Api-Key: YOUR_SECRET_TOKEN'
[
{
"id": 1241,
"blacklist": "Spamhaus DBL",
"listed": true,
"updated_at": "2026-04-22T09:14:03.114Z",
"checked_value": "acme.com",
"host_type": "domain"
}
]