POST
/
email-validations
curl --request POST \
  --url https://api.amplemarket.com/email-validations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "emails": [
    {
      "email": "jsmith@example.com"
    }
  ]
}'
{
  "id": "01952829-2cc3-7f25-aa60-c6ae7ec02056",
  "object": "email_validation",
  "status": "queued",
  "results": [],
  "_links": {
    "self": {
      "href": "/email-validations/01952829-2cc3-7f25-aa60-c6ae7ec02056"
    }
  }
}
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.

Headers

Content-Type
string
required

Body

application/vnd.amp+json
Emails to be validated
emails
object[]
required

Response

202
application/vnd.amp+json
Batch accepted
id
string
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[]