Email finder
Bulk Lookup Job Results
Retrieve lookup results for a bulk job. Paginated; each row mirrors the /v1/email-lookup response shape.
GET
Get Bulk Lookup Results
Use this endpoint to retrieve the lookup results for a bulk job. The response contains aDocumentation Index
Fetch the complete documentation index at: https://orbisearch.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
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.
Pagination
Results are paginated withlimit 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).
Per-row shape
Each entry inresults 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 | confidence | credits_consumed |
|---|---|---|---|---|---|
| Found | safe | deliverable | the discovered address | 0–100 | 1 |
| Not found | unknown | no_address_found | null | null | 1 |
not_found rows, the enrichment fields (email_provider, mx_record, is_* flags, confidence) may be null or "Unknown" — they’re populated only when a deliverable address is returned. See the response schema for field-by-field details.
Example response
Authorizations
API key for authentication
Path Parameters
Response
Successful Response
Paginated results for a bulk lookup job.
Unique job identifier.
Example:
"123e4567-e89b-12d3-a456-426614174000"
Total rows submitted.
Example:
500
Rows processed so far.
Example:
500
Page size used for this response.
Example:
50
Row offset into the ordered result set.
Example:
0
Per-row lookup results, one object per submitted tuple.