Email Validation

Validate Email

GET https://api.flintbase.com/identity/email/validate

This endpoint allows you to validate an email address.

Query Parameters

Name
Type
Description

email

string

An email address for validation.

{
   "success":true,
   "score":0.91,
   "verdict":"valid",
   "attributes":{
      "username":"hello",
      "domain":"flintbase.com",
      "cleaned":"[email protected]",
      "suggestion":null
   },
   "checks":{
      "valid_format":true,
      "mx_record_found":true,
      "role_based":true,
      "disposable":false,
      "free":false
   }
}

Last updated

Was this helpful?