Skip to content
View mailveri's full-sized avatar
Block or Report

Block or report mailveri

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mailveri/README.md

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.

Pinned Loading

  1. mailveri mailveri Public

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

    1