Retrieve verification results for a bulk job. Returns an array of EmailVerificationResponse objects for every email processed so far.
curl --request GET \
--url 'https://api.orbisearch.com/v1/bulk/123e4567-e89b-12d3-a456-426614174000/results' \
--header 'X-API-Key: YOUR_API_KEY'{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "complete",
"total_results": 500,
"results": [
{
"email": "[email protected]",
"status": "safe",
"substatus": "deliverable",
"explanation": "Safe to email. The mailbox exists and is deliverable.",
"email_provider": "Google Workspace",
"is_disposable": false,
"is_role_account": false,
"is_free": false
}
],
"pending_retries": [],
"retry_count": 0
}results array will only contain entries for emails processed so far.
complete status before calling this endpoint. If you call it while the job is still in_progress, the response will contain whatever results are available at that moment. The total_results field reflects the number of results in the current response, not the final total for the job.
To confirm you have all results, check that the job status is complete and pending_retries is empty ([]) before treating the result set as final. pending_retries is an array of email addresses still queued for automatic greylist retry — an empty array means the job has fully settled.API key for authentication
Successful Response
Results of a completed bulk verification job.
Unique job identifier.
"123e4567-e89b-12d3-a456-426614174000"
Job status when results were fetched.
complete, partial_complete_retrying "complete"
Total number of results in this response.
100
Array of email verification results.
Show child attributes
Number of emails still being retried.
5
curl --request GET \
--url 'https://api.orbisearch.com/v1/bulk/123e4567-e89b-12d3-a456-426614174000/results' \
--header 'X-API-Key: YOUR_API_KEY'{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "complete",
"total_results": 500,
"results": [
{
"email": "[email protected]",
"status": "safe",
"substatus": "deliverable",
"explanation": "Safe to email. The mailbox exists and is deliverable.",
"email_provider": "Google Workspace",
"is_disposable": false,
"is_role_account": false,
"is_free": false
}
],
"pending_retries": [],
"retry_count": 0
}