Skip to main content
POST
/
email
/
verify
Validate an email address
curl --request POST \
  --url https://api.mailerfuse.com/email/verify \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "email": "[email protected]",
  "status": "deliverable",
  "score": 85,
  "syntax_error": false,
  "gibberish": false,
  "role": false,
  "did_you_mean": "[email protected]",
  "disposable": false,
  "domain_status": "active",
  "mx_record": true,
  "workspace_id": "abc123"
}

Authorizations

x-api-key
string
header
required

Body

application/json
email
string<email>
required

Response

Successfully validated email

email
string
status
enum<string>
Available options:
deliverable,
risky,
undeliverable
Example:

"deliverable"

score
integer
Required range: 0 <= x <= 100
Example:

85

syntax_error
boolean
Example:

false

gibberish
boolean
Example:

false

role
boolean
Example:

false

did_you_mean
string | null
disposable
boolean
Example:

false

domain_status
string
Example:

"active"

mx_record
boolean
Example:

true

workspace_id
string
Example:

"abc123"