GET
/
v1.1
/
email
/
verify
/
batch
/
{batchId}
/
download
curl --request GET \
  --url https://api.usebouncer.com/v1.1/email/verify/batch/{batchId}/download \
  --header 'x-api-key: <api-key>'
[
  {
    "email": "john@usebouncer.com",
    "name": "John Doe",
    "status": "deliverable",
    "reason": "accepted_email",
    "domain": {
      "name": "usebouncer.com",
      "acceptAll": "no",
      "disposable": "no",
      "free": "no"
    },
    "account": {
      "role": "no",
      "disabled": "no",
      "fullMailbox": "no"
    },
    "dns": {
      "type": "MX",
      "record": "aspmx.l.google.com."
    },
    "provider": "google.com",
    "score": 100,
    "toxic": "unknown"
  },
  {
    "email": "jane@usebouncer.com",
    "status": "deliverable",
    "reason": "accepted_email",
    "domain": {
      "name": "usebouncer.com",
      "acceptAll": "no",
      "disposable": "no",
      "free": "no"
    },
    "account": {
      "role": "no",
      "disabled": "no",
      "fullMailbox": "no"
    },
    "dns": {
      "type": "MX",
      "record": "aspmx.l.google.com."
    },
    "provider": "google.com",
    "score": 100,
    "toxic": "unknown"
  }
]

Authorizations

x-api-key
string
headerrequired

Path Parameters

batchId
string
required

Query Parameters

download
string

download emails by status, possible values: all, deliverable, risky, undeliverable, unknown

Response

200 - application/json

The response is of type object.