Using the email verifier API endpoint is pretty straightforward. All you need to do is perform a GET request on the main lookup endpoint using the following schema.
curl -X GET https://mailinput.com/api/v1/email-verifier/[email protected]?apikey={your-apikey-goes-here}
sample API response
{
"email": "[email protected]",
"deliverable": true,
"status": "valid",
"regexp": true,
"disposable": false,
"catch_all": false,
"free_email": false,
"role": true,
"mx_records": [
"mx2.zoho.com",
"mx.zoho.com",
"mx3.zoho.com"
],
"smtp_server": true,
"smtp_check": true,
"block": false,
"username": "support",
"domain": "devrolabs.com"
}