GET
/
emails
/
addresses
/
{address}
Validar Email
curl --request GET \
  --url https://exact.ws/emails/addresses/{address} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "address": "jsmith@example.com",
  "domain_name": "<string>",
  "local": "<string>",
  "tag": "<string>",
  "did_you_mean": "<string>",
  "is_accepted": true,
  "is_generic": true,
  "is_honeypot": true,
  "domain": {
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "mx_record": "<string>",
    "is_smtp_enabled": true,
    "is_catch_all": true,
    "is_free": true,
    "is_disposable": true
  },
  "issues": [
    "<string>"
  ],
  "status": "deliverable",
  "reason": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

address
string
required

O endereço de e-mail que deseja validar

Response

200
application/json

Request fulfilled, document follows

The response is of type object.