/email/verify
Posted by Denzel B on Wednesday, May 04, 2016 - 18:31
Attempts to validate the domain, account, and type of an email address.
Resource URL
https://api.everythinglocation.com/email/verify
Resource Information
Preferred method |
GET, POST |
Response formats |
JSON, XML, HTML |
Requires authentication? |
Yes, valid API key |
Chargeable? |
Request Parameters
lqtkey Required |
A valid API key with sufficient credit available to process the requested transactions. Example: BFtd2UpC8Gl1jU1pPnDZIVpoz2XnBMyWEfVcAfoI |
Required |
The full email address to be submitted for verification. This endpoint supports only one email address per call. Example: ...email=john.doe@everythinglocation.com |
Response Parameters
Status |
The result of your call. "OK" indicates success, any other status indicates an error. Example: "Status":"OK" |
email[] |
The array containing the response. Each results will conatin the follwoing fields:
When email_status = unknown, the process on the given record is not charged. Sample JSON output[] is enclosed below. |
Example Request
GET http://api.everythinglocation.com/email/verify ?lqtkey=BFtd2UpC8Gl1jU1pPnDZIVpoz2XnBMyWEfVcAfoI &email=john.doe@everythinglocation.com
Example Response
200 OK Content-Type: application/json; charset=utf8 Date: Wed, 14 Feb 2016 12:09:25 GMT Server: Apache X-Powered-By: PHP/5.4.16 Content-Length: 1912 Connection: keep-alive { "Status" : "OK", "email" : [ { "email" : "john.doe@everythinglocation.com", "host_domain" : "everythinglocation.com", "email_status" : "valid" } ] }