Skip to main content
POST
/
v1
/
verify
curl --request POST \
  --url https://api.mailglyph.com/v1/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@gmail.com"
}
'
{
  "success": true,
  "data": {
    "email": "user@gmail.com",
    "valid": true,
    "isDisposable": false,
    "isAlias": false,
    "isTypo": false,
    "isPlusAddressed": false,
    "isRandomInput": false,
    "isPersonalEmail": true,
    "domainExists": true,
    "hasWebsite": true,
    "hasMxRecords": true,
    "reasons": [
      "Email appears to be valid"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mailglyph.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authentication. Secret keys (sk_*) are required for all endpoints except /v1/track. Public keys (pk_*) only work with the /v1/track endpoint for client-side event tracking. Workspaces can have multiple active keys, and sender-domain operations enforce per-key domain scope when configured.

Body

application/json
email
string<email>
required

Email address to verify

Response

Email verification completed successfully

success
boolean

Always true for successful requests

data
object