POST
/
email-validations
Start batch of 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": "0198f652-8062-7aac-b6c8-5b7228854105",
"object": "email_validation",
"status": "queued",
"results": [],
"_links": {
"self": {
"href": "/email-validations/0198f652-8062-7aac-b6c8-5b7228854105"
}
}
}
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

emails
object[]
required

Response

Batch accepted

id
string<uuid>
required
object
enum<string>
required
Available options:
email_validation
status
enum<string>
required
Available options:
queued,
processing,
completed,
canceled,
error
results
object[]
required
_errors
object[]