cURL
curl --request GET \ --url https://api.reply.io/v3/blacklists \ --header 'X-API-Key: <api-key>'
[ { "domains": [ "spam-domain.com", "malicious-site.net" ], "emails": [ "[email protected]", "[email protected]" ] } ]
Retrieves all blacklist items
API key passed in the X-API-Key header
Flter blacklist items by type (domain or email)
domain
email
List of blacklist items
List of blocked domain names
["spam-domain.com", "malicious-site.net"]
List of blocked email addresses
["[email protected]", "[email protected]"]