Validate
Email validation
Validate email
GET https://api.sendbridge.com/v1/validate/api_token/email_address
Path Parameters
api_token*
String
email_address*
String
{
    "email":"tested@emailabc123.com",
    "freemail":false,
    "valid_syntax":true,
    "abnormal_local_part":false,
    "abnormal_domain":false,
    "local_part_too_long":false,
    "shared":false,
    "valid_tld":true,
    "disposable":false,
    "mx_valid":true,
    "a_valid":"",
    "score":99,
    "time_taken":"0.09"
}string
An original email address that has been submitted for a test.
freemail
bool: true / false
Is email based on a freemail service like Gmail, Yahoo, Outlook etc.?
valid_syntax
bool: true / false
Is the email address syntactically valid?
abnormal_local_part
bool: true / false
Is the email local part (before @) somehow abnormal?
abnormal_domain
bool: true / false
Is the email domain part (after @) somehow abnormal?
local_part_too_long
bool: true / false
Is the email local part (before @) longer than is usual?
shared
bool: true / false
Is the email local part a shared account?
valid_tld
bool: true / false
Does the email domain have a valid top-level domain (TLD)?
disposable
bool: true / false
Is the email address based on email disposable service?
mx_valid
bool: true / false
Does the domain have a valid Mail Exchanger (MX) DNS records?
a_valid
bool: true / false
Does the domain have a valid A DNS records?
score
int: 0 - 99
A resulting score of email validation. The higher number is better.
time_taken
decimal: 0.00
Time taken to process your API request in seconds.
Last updated
