Skip to content

Check API

The /check endpoint allows you to validate emails based on your configuration settings.

Check email

You can send a POST to https://api.no550.com/check in order to validate if an email is valid. We will return if the email is valid or not (along with some other info) in the data property.

We require a JSON body with the email you want to check, this can be supplied as { "email": "[email protected]" }.

Example:

Terminal window
$ curl https://api.no550.com/check -s -H 'Authorization: API_TOKEN' \
-X POST \
-H 'Content-Type: application/json' \
-d '{"email": "[email protected]"}'
{
"success": true,
"message": "Success",
"data": {
// TODO: What is this
}
}