POST
/
email-validations
curl --request POST \
  --url https://api.amplemarket.com/email-validations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emails": [
    {
      "email": "jsmith@example.com"
    }
  ]
}'
{
"id": "0197abd8-a826-7fe0-b903-60b6efdb4991",
"object": "email_validation",
"status": "queued",
"results": [],
"_links": {
"self": {
"href": "/email-validations/0197abd8-a826-7fe0-b903-60b6efdb4991"
}
}
}
For each email that goes through the validation process will consume 1 email credit from your account

Authorizations

Authorization
string
header
required

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

Body

application/json

Emails to be validated

The body is of type object.

Response

202
application/json

Batch accepted

The response is of type object.