POST
/
email-validations
curl --request POST \
  --url https://api.amplemarket.com/email-validations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.amp+json' \
  --data '{
  "emails": [
    {
      "email": "jsmith@example.com"
    }
  ]
}'
{
  "id": "019584f8-22f9-77c3-b056-ffef68a4bf4d",
  "object": "email_validation",
  "status": "queued",
  "results": [],
  "_links": {
    "self": {
      "href": "/email-validations/019584f8-22f9-77c3-b056-ffef68a4bf4d"
    }
  }
}
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/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[]