GET
/
email
/
find
/
bulk
/
{job_id}
Get bulk email find job
curl --request GET \
  --url https://api.generect.com/api/v1/email/find/bulk/{job_id}/ \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "lead_id": "lead_abc123xyz",
      "email": {
        "address": "john.doe@acme.com",
        "status": "VALID"
      }
    }
  ],
  "meta": {
    "job_id": "job_123",
    "status": "completed",
    "total": 2,
    "processed": 2,
    "amount_charged": 0.02,
    "error": null
  }
}

Use Case:

Check the status and retrieve results for a bulk email find job.

Pricing

This endpoint is free — it does not incur any charges.

Authorizations

Authorization
string
header
required

Use the required Token prefix. Example: Authorization: Token xxxxxxxxx

Path Parameters

job_id
string
required

Response

Bulk job status and results

data
object[] | null

Result items once status is completed; null until then.

meta
object

Bulk job state. Poll the bulk status endpoint with job_id or subscribe to the completion webhook.