Retrieve lookup results for a bulk job. Paginated; each row mirrors the /v1/email-lookup response shape.
curl --request GET \
--url https://api.orbisearch.com/v1/bulk-lookup/{job_id}/results \
--header 'X-API-Key: <api-key>'{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"limit": 50,
"offset": 0,
"results": [],
"total_processed": 500,
"total_rows": 500
}results array — one object per row processed so far — alongside paging metadata (limit, offset, total_rows, total_processed).
You can call this endpoint while the job is still running to retrieve partial results. The total_processed field tells you how many rows have been completed at the time of the call.
limit and offset query parameters:
| Parameter | Default | Maximum | Notes |
|---|---|---|---|
limit | 50 | 500 | Number of rows to return in this page. |
offset | 0 | — | Index into the ordered result set. |
offset by limit until the returned results array is empty (or offset >= total_rows).
results is identical in shape to the POST /v1/email-lookup response — same status, substatus, email, enrichment fields, and the echoed first_name, last_name, domain from your input.
| Outcome | status | substatus | email | credits_consumed |
|---|---|---|---|---|
| Found | safe | deliverable | the discovered address | 1 |
| Not found | unknown | no_address_found | null | 1 |
not_found rows, the enrichment fields (email_provider, mx_record, is_* flags) may be null or "Unknown" — they’re populated only when a deliverable address is returned. See the response schema for field-by-field details.
{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"total_rows": 500,
"total_processed": 500,
"limit": 50,
"offset": 0,
"results": [
{
"email": "[email protected]",
"status": "safe",
"substatus": "deliverable",
"explanation": "Safe to email. The mailbox exists and is deliverable.",
"email_provider": "Google Workspace",
"mx_record": "aspmx.l.google.com",
"is_domain_catch_all": false,
"is_secure_email_gateway": false,
"is_disposable": false,
"is_role_account": false,
"is_free": false,
"credits_consumed": 1,
"first_name": "Jane",
"last_name": "Doe",
"domain": "acme.com"
},
{
"email": null,
"status": "unknown",
"substatus": "no_address_found",
"explanation": "No deliverable address could be found for the given name at this domain.",
"email_provider": "Unknown",
"mx_record": null,
"is_domain_catch_all": null,
"is_secure_email_gateway": false,
"is_disposable": null,
"is_role_account": null,
"is_free": null,
"credits_consumed": 1,
"first_name": "John",
"last_name": "Smith",
"domain": "bigcorp.io"
}
]
}
API key for authentication
Successful Response
Paginated results for a bulk lookup job.
Unique job identifier.
"123e4567-e89b-12d3-a456-426614174000"
Total rows submitted.
500
Rows processed so far.
500
Page size used for this response.
50
Row offset into the ordered result set.
0
Per-row lookup results, one object per submitted tuple.
Show child attributes
curl --request GET \
--url https://api.orbisearch.com/v1/bulk-lookup/{job_id}/results \
--header 'X-API-Key: <api-key>'{
"job_id": "123e4567-e89b-12d3-a456-426614174000",
"limit": 50,
"offset": 0,
"results": [],
"total_processed": 500,
"total_rows": 500
}