Skip to main content
GET
/
contact
/
reverse
/
email
/
bulk
/
{enrichment_id}
Get Bulk Reverse Email Results
curl --request GET \
  --url https://app.fullenrich.com/api/v2/contact/reverse/email/bulk/{enrichment_id} \
  --header 'Authorization: Bearer <token>'
{
"id": "2db5ea61-1752-42cf-8ea1-ab1da060cd0a",
"name": "Reverse Email Lookup",
"status": "FINISHED",
"cost": {
"credits": 1
},
"data": [
{
"input": {
"email": "[email protected]"
},
"custom": {
"user_id": "12584"
},
"profile": {
"id": "746e4816-19c8-54d8-b558-65a5a52cc85c",
"full_name": "John Snow",
"first_name": "John",
"last_name": "Snow",
"location": {
"country": "United States",
"country_code": "US",
"city": "San Francisco",
"region": "California"
}
}
}
]
}
Use this endpoint to retrieve the result from a reverse email lookup. You don’t need to use this endpoint if you are using a webhook. Using a webhook is the method we recommend to get the result as soon as the enrichment is done.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

enrichment_id
string
required

The unique identifier returned when the reverse lookup was started

Response

OK

id
string<uuid>
Example:

"2db5ea61-1752-42cf-8ea1-ab1da060cd0a"

name
string
Example:

"Start Reverse Email Lookup Operation"

status
enum<string>
Available options:
CREATED,
IN_PROGRESS,
CANCELED,
CREDITS_INSUFFICIENT,
FINISHED,
RATE_LIMIT,
UNKNOWN
Example:

"FINISHED"

data
object[]
cost
object