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": [ "spam@example.com", "unwanted@mail.com" ] } ]
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
["spam@example.com", "unwanted@mail.com"]