POST
/
email_verify
/
instant
curl --request POST \
  --url https://api.clearout.io/v2/email_verify/instant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "YourEmail",
  "timeout": 90000
}'
{
  "status": "success",
  "data": {
    "email_address": "[email protected]",
    "safe_to_send": "yes",
    "status": "valid",
    "verified_on": "2019-05-02T12:42:53.000Z",
    "time_taken": 432,
    "sub_status": {
      "code": 200,
      "desc": "Success"
    },
    "detail_info": {
      "account": "us",
      "domain": "clearout.io"
    },
    "blacklist_info": [],
    "disposable": "no",
    "free": "no",
    "role": "yes",
    "gibberish": "no",
    "suggested_email_address": "<string>",
    "profile": null,
    "score": 1,
    "bounce_type": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Email to Verify Instantly
email
string
required
Example:

"YourEmail"

timeout
integer
Example:

90000

Response

200
application/json
OK
status
string

Response Object status

Example:

"success"

data
object