Check the status and progress of a bulk verification job. Returns emails processed, total count, job status, and retry information.
curl --request GET \
--url 'https://api.orbisearch.com/v1/bulk/123e4567-e89b-12d3-a456-426614174000' \
--header 'X-API-Key: YOUR_API_KEY'{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "in_progress",
"total_emails": 500,
"emails_processed": 245,
"retry_status": "none",
"submitted_at": "2024-01-15T10:30:00+00:00",
"completed_at": null
}| Status | Meaning |
|---|---|
pending | Job has been accepted and is queued for processing. |
in_progress | Job is actively being processed. Check emails_processed for progress. |
partial_complete_retrying | Initial pass is complete. Some emails returned unknown and are being automatically retried. |
complete | All emails have been processed and retries have finished. Results are ready to retrieve. |
failed | The job could not be completed. Contact support if this status persists. |
| Retry status | Meaning |
|---|---|
none | No retries required or initiated. |
pending | Retries have been queued but not yet started. |
partial | Some retries have completed; others are still in progress. |
complete | All retries have finished. |
API key for authentication
Successful Response
Status information for a bulk verification job.
Unique job identifier.
"123e4567-e89b-12d3-a456-426614174000"
Current job status: pending, in_progress, partial_complete_retrying, complete, failed.
pending, in_progress, partial_complete_retrying, complete, failed "in_progress"
Total number of emails in this job.
100
Number of emails processed so far.
45
When the job was submitted (ISO 8601 timestamp).
"2024-01-15T10:30:00+00:00"
Retry status: none, pending, partial, complete.
none, pending, partial, complete "pending"
When the job was completed (ISO 8601 timestamp), or null if still in progress.
"2024-01-15T10:35:00+00:00"
curl --request GET \
--url 'https://api.orbisearch.com/v1/bulk/123e4567-e89b-12d3-a456-426614174000' \
--header 'X-API-Key: YOUR_API_KEY'{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "in_progress",
"total_emails": 500,
"emails_processed": 245,
"retry_status": "none",
"submitted_at": "2024-01-15T10:30:00+00:00",
"completed_at": null
}