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.
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

Error Responses

CodeMessage
404Bulk search not found
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"
}