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": "jsmith@example.com"
    }
  ]
}
'
{
  "id": "019dfcc6-24c2-7e99-a26c-9bab57a3b368",
  "object": "email_validation",
  "status": "queued",
  "results": [],
  "_links": {
    "self": {
      "href": "/email-validations/019dfcc6-24c2-7e99-a26c-9bab57a3b368"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.amplemarket.com/llms.txt

Use this file to discover all available pages before exploring further.

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[]