Skip to main content
GET
/
lists
/
verify
Get the status of a verified email list
curl --request GET \
  --url https://api.mailerfuse.com/lists/verify \
  --header 'x-api-key: <api-key>'
{
  "status": "processing",
  "summary": {
    "deliverable": 80,
    "risky": 10,
    "undeliverable": 10
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

id
string
required

The ID of the list to retrieve the status for.

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

List status retrieved successfully

status
string
Example:

"processing"

summary
object

Summary of verification results (if available)

Example:
{
"deliverable": 80,
"risky": 10,
"undeliverable": 10
}