Skip to main content
GET
/
email-validations
/
{id}
Retrieve email validation results
curl --request GET \
  --url https://api.amplemarket.com/email-validations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "object": "email_validation",
  "status": "queued",
  "results": [
    {
      "object": "email_validation_result",
      "email": "[email protected]",
      "result": "deliverable",
      "catch_all": true
    }
  ],
  "_links": {
    "self": {
      "href": "<string>"
    },
    "prev": {
      "href": "<string>"
    },
    "next": {
      "href": "<string>"
    }
  },
  "_errors": [
    {
      "code": "<string>",
      "title": "<string>",
      "detail": "<string>",
      "source": {
        "pointer": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Batch id

Query Parameters

page[size]
string

Page size

page[after]
string

Page after

page[before]
string

Page before

Response

Successful

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