POST
/
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": "0196b4f9-4505-7b05-b52a-ea60d16c2b71",
  "object": "email_validation",
  "status": "queued",
  "results": [],
  "_links": {
    "self": {
      "href": "/email-validations/0196b4f9-4505-7b05-b52a-ea60d16c2b71"
    }
  }
}
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

The body is of type object.

Response

202
application/json

Batch accepted

The response is of type object.