Free Email Validation API
  • SendBridge Email Validation API v1
  • Quick Start
  • Reference
    • API Reference
      • Validate
Powered by GitBook
On this page
  • Email validation
  • Validate email
  1. Reference
  2. API Reference

Validate

Email validation

Validate email

GET https://api.sendbridge.com/v1/validate/api_token/email_address

Path Parameters

Name
Type
Description

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"
}

email

string

An original email address that has been submitted for a test.

freemail

bool: true / false

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.

PreviousAPI Reference

Last updated 1 year ago

Is email based on a freemail service like Gmail, Yahoo, Outlook etc.?