8000 GitHub - mailveri/mailveri: Bulk Email Verification Tool at https://mailveri.com
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mailveri/mailveri

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

About

Bulk Email Verification Tool at https://mailveri.com.

Free API

This API can be used to verify whether an email is valid when a user signs up for an account on a website.

This API involves two steps: first, you need to send a POST request, and then you use the token received in the response to retrieve the result by making a GET request.

Here is the API documentation with a self-explanatory cURL example:

POST

curl -X POST https://free.mailveri.com --data-urlencode "mail=<verifyingEmail>"

Success response with HTTP status code 200 with JSON body:

Field Type Description
token string Unique token to be used in the next step
wait integer Wait time in milliseconds before making the next request

Error response with HTTP status codes 4xx with JSON body:

Field Type Description
error string Error details
wait integer Wait time in milliseconds before making the next request

GET

curl -X GET https://free.mailveri.com/?mail=<verifyingEmail>&token=<tokenReturnedFromPOST>

Success response with HTTP status code 200 with JSON body:

Field Type Description
status string GOOD: The email is good to send emails
BAD: The email is bad; do not send to it
UGLY (aka. UNKNOWN): No result available yet, result expired, or domain not supported
info string (Optional) Additional information

Error response with HTTP status codes 4xx with empty body.

0