POST
/
enrichments
/
validate-emails
curl --request POST \
  --url https://exact.ws/enrichments/enrichments/validate-emails \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webhook_url": "<string>",
  "emails": [
    "<string>"
  ]
}'
{
  "id": "<string>",
  "status": "COMPLETED",
  "data": {
    "emails": [
      {
        "address": "<string>",
        "status": "deliverable",
        "issues": [],
        "reason": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Request fulfilled, document follows

The response is of type object.