We speak your language. Our real-time RESTful API is available in all language, Few examples are provided below
URL: https://email-validator.com/api/v1.0/json
METHOD: POST
POST Parameter | Description |
---|---|
api_key
|
Required. API Key you can get from your account console. click here to get your API Key |
email
|
Required. Email address, that you want to validate |
The response is a JSON object:
{
email: "example@example.com",
IP: "203.109.95.19",
is_exists: true,
inbox_full: false,
status: 200,
message: "success",
}
Parameter | Description |
---|---|
email
|
Email address that is validated |
IP
|
IP address of the user, from where request is made |
is_exists
|
true|false, true mean email exist and false mean emails doesn't exist |
inbox_full
|
true|false, if true then inbox is full mean you better not send email, if false then inbox is not full so you can send email. |
status
|
HTTP status code |
message
|
message is response as a string of the request. Possible values are explained below
N.B. In case of errors, the response JSON object not include is_exists and inbox_full parameter.
|