/v1/bulk

v1/bulk

posthttps://api.reacher.email/v1/bulk

Initiate a bulk email verification.

Authorizations

Authorization string required

A Reacher API key is required for all requests. Sign up on https://app.no2bounce.com/arrow-up-right to get your personal API key.

Body

input string[] required

A list of emails to verify.

webhook object · TaskWebhook optional Optional webhook configuration for sending email verification results during bulk verification.

Response object job_idinteger integer required

The unique ID generated for this bulk verification job. Use this job_id to query the progress or results of the bulk verification.

/v1/bulk

POST /v1/bulk HTTP/1.1
Host: api.reacher.email
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 72

{
  "input": [
    "text"
  ],
  "webhook": {
    "on_each_email": {
      "url": "text",
      "extra": {}
    }
  }
}

Response

/v1/bulk/{job_id}

GET https://api.reacher.email /v1/bulk/ {job_id}arrow-up-right

Retrieve the progress of a bulk verification job.

Authorizations Authorization string required

A Reacher API key is required for all requests. Sign up on https://app.no2bounce.com/arrow-up-right to get your personal API key.

Path parameters job_id integer required

The unique bulk verification job ID

/v1/bulk/{job_id}

Response

Retrieve bulk verification results

GET https://api.reacher.email/v1/bulk/{job_id}/results

Retrieve the results of a bulk verification job. This endpoint will return an error if the job is still running. Please query GET /v1/bulk/{job_id} first to check the job's progress.

Authorizations Authorization string required

A Reacher API key is required for all requests. Sign up on https://app.no2bounce.com/arrow-up-right to get your personal API key.

Path parameters job_id string required

The unique bulk verification job ID

Query parameters limit integer optional

The number of results to return.

Default: 50 offset integer optional

The offset from which to return the results, equivalent to the number of elements in the array to skip.

/v1/bulk/{job_id}/results

Response

Last updated