GET
/
blacklists
Get all blacklist items
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"
    ]
  }
]

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

type
enum<string>

Flter blacklist items by type (domain or email)

Available options:
domain,
email

Response

200 - application/json

List of blacklist items

domains
string[]
required

List of blocked domain names

Example:
["spam-domain.com", "malicious-site.net"]
emails
string[]
required

List of blocked email addresses

Example:
["spam@example.com", "unwanted@mail.com"]