cURL
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" } ] }'
202
Batch accepted
{ "id": "0197c138-91de-75ce-9c43-e20e809c9c24", "object": "email_validation", "status": "queued", "results": [], "_links": { "self": { "href": "/email-validations/0197c138-91de-75ce-9c43-e20e809c9c24" } }}
Start batch of email validations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Emails to be validated
The body is of type object.
object
The response is of type object.
Was this page helpful?