Skip to main content
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": "[email protected]"
    }
  ]
}'
{
"_errors": [
{
"code": "internal_server_error",
"title": "Internal Server Error",
"detail": "Something went wrong."
}
],
"object": "error"
}
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[]