Skip to main content
GET
/
email
/
find
/
single
curl --request GET \
  --url 'https://api.enrow.io/email/find/single?id=0cf517bc-16e8-45bc-b967-ab9116b3c804' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "email": "dwight.schrute@dundermifflin.com",
  "custom": {
    "external_id": "do4eIF8jF40x!",
    "partition_number": 2
  },
  "info": {
    "company_domain": "dundermifflin.com",
    "fullname": "Dwight Schrute",
    "firstname": "dwight",
    "lastname": "schrute"
  },
  "qualification": "valid"
}
GET
https://api.enrow.io/email/find/single?id={id}
Retrieve the result of a previously launched email search using its unique ID. Authenticate every request with your API key in the x-api-key header.
Using a webhook allows you to skip calling this GET endpoint, as you will be notified the second your search is finished. See How Webhooks Work.

Query Parameters

id
string
required
The unique identifier returned from the POST request

Response

200 — Search completed

email
string
The discovered email address
qualification
string
valid (email found) or invalid (email not found). Why binary?
info
object
Contact and company information
custom
object
Custom properties passed in the original request, returned as-is

202 — Search still in progress

qualification
string
ongoing — the search is not finished yet. Poll again shortly, or use a webhook to be notified automatically. Retrieving a result does not consume credits; see Credits & billing.

Error Responses

CodeMessage
400The single search id is missing in the URL query string
500Could not retrieve single search results
See Error handling for the full list of status codes and response formats.
curl --request GET \
  --url 'https://api.enrow.io/email/find/single?id=0cf517bc-16e8-45bc-b967-ab9116b3c804' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "email": "dwight.schrute@dundermifflin.com",
  "custom": {
    "external_id": "do4eIF8jF40x!",
    "partition_number": 2
  },
  "info": {
    "company_domain": "dundermifflin.com",
    "fullname": "Dwight Schrute",
    "firstname": "dwight",
    "lastname": "schrute"
  },
  "qualification": "valid"
}

Next steps

Find an email

Launch a single email search to obtain a search id.

Get bulk results

Retrieve the results of a bulk email search.

Webhooks

Get notified automatically when a search completes.

Authentication

How to pass your API key in the x-api-key header.