Skip to main content
POST
/
contact
/
reverse
/
email
/
bulk
Reverse Contact Lookup In Bulk
curl --request POST \
  --url https://app.fullenrich.com/api/v1/contact/reverse/email/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "data": [
    {
      "email": "<string>"
    }
  ],
  "webhook_url": "<string>"
}
'
{
"enrichment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Get the full Person and Company profile from an email. This endpoint works with:
  • Work emails
  • Personal emails
If we find who’s behind the email, 1 credit will be used.

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
data
object[]
required
webhook_url
string

If you are using n8n, this is where you add the Webhook that will be triggered when the enrichment is done.

Response

OK

enrichment_id
string<uuid>