PlunkPlunk
API Reference

Verify email address

Verify an email address for validity, check if it's from a disposable domain, verify MX records, and detect potential typos with suggestions.

POST
/v1/verify

Authorization

ApiKeyAuth

AuthorizationBearer <token>

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. The project is automatically derived from the key.

In: header

Request Body

application/json

email*string

Email address to verify

Formatemail

Response Body

application/json

application/json

application/json

curl -X POST "https://plunk-api.tophunting.ai/v1/verify" \  -H "Content-Type: application/json" \  -d '{    "email": "user@gmail.com"  }'

{
  "success": true,
  "data": {
    "email": "user@gmail.com",
    "valid": true,
    "isDisposable": false,
    "isAlias": false,
    "isTypo": false,
    "isPlusAddressed": false,
    "domainExists": true,
    "hasMxRecords": true,
    "reasons": [
      "Email appears to be valid"
    ]
  }
}

{
  "code": 0,
  "error": "string",
  "message": "string",
  "time": 0
}
{
  "code": 0,
  "error": "string",
  "message": "string",
  "time": 0
}