Verify API

Get Bulk Email Verification Results

Retrieves the results of bulk email verification if the processing is completed.

get/verify/v1/email/bulk/results/{requestId}

Path parameters

requestIdstring required

Job ID of the bulk email verification

Response

Bulk email verification results if processing is completed

estimatedCompletionTsinteger

Epoch timestamp

fileNamestring
jobIdstring
messagestring
statusstring

Example response

{
  "estimatedCompletionTs": 1694030400,
  "fileName": "emails.csv",
  "jobId": "550e8400-e29b-41d4-a716-446655440000",
  "message": "Completed 1000 of 1000 emails",
  "results": {
    "deliverable": 950,
    "downloadUrl": "https://api.customeros.ai/verify/v1/email/bulk/results/550e8400-e29b-41d4-a716-446655440000/download",
    "totalEmails": 1000,
    "undeliverable": 45
  },
  "status": "completed"
}

Changes