Email verification API

EmailRazor offers an API interface you can use to validate emails. API endpoint is the following:

https://emailrazor.com/v1/checkEmail?apikey=YOUR_API_KEY&email=EMAIL_TO_VERIFY

API can be called with a simple GET call, passing two parameters: Each successful api call consumes one credit on your EmailRazor credit balance.
Credit balance is re-computed every few minutes.

API replies with a json that contains a 'status' field, if status field value is equal to ERROR it means that the api call is unsuccessful and you can find more details in the error field of the json.
If the API call is successfull, status field contains OK and the json contains the following data:

API call sample

Take a look at the following example API request URL:
https://emailrazor.com/v1/checkEmail?apikey=YOUR_API_KEY&email=test@example1.com
(If you would like to try it yourself, subscribe to EmailRazor and get some free credit)

The example of API call above would get the following answer:
{
    "email":"test@example1.com",
    "md5":"908895b8e55e8a914f61f88bc15f72b7",
    "sha256":"39536741e082add5c9f94ce2395b72b489e198b9c8bffe1ee93cdd7467ac5359",
    "normalized":"test@example1.com",
    "user":"test",
    "domain":"example1.com",
    "role":true,
    "format":"valid",
    "mx":"defined (1)",
    "free":false,
    "disposable":false,
    "catchall":false,
    "smtp":false,
    "smtpstatus":"warning: can't verify smtp",
    "score":"0.30",
	"result":"risky",
    "status":"OK",
    "elapsed":"179 ms"
}