Enrichment API
Find email
Find Email Address
Note: This endpoint is currently in beta. The API response format and behavior may change in future releases.
Find email address for a lead.
Endpoint
Request
Headers
Name | Type | Required | Description |
---|---|---|---|
x-api-key | string | Yes | Your Sixtyfour API key |
Content-Type | string | Yes | Must be application/json |
Body
Field | Type | Required | Description |
---|---|---|---|
lead | object | Yes | Lead information to find email for |
bruteforce | boolean | No | Whether to use bruteforce to find email. Default is true, in brute force mode, the API will try to find an email address by appending common email suffixes to the domain part of the lead’s name and then check if the email exists. |
only_company_emails | boolean | No | When set to true, the API will only return company email addresses. Default is false. |
Example Request
Response
Success Response (200)
Returns the found email address and confidence score.
The email
field contains a list of tuples, where each tuple consists of:
- Email address (string)
- Validation status (string):
"OK"
: The email address has been validated and is likely deliverable"UNKNOWN"
: The email address could not be validated or its deliverability status is uncertain, most likely because of catch all domains.
- Email type (string):
"COMPANY"
: The email address is associated with the company domain"PERSONAL"
: The email address is a personal email address (e.g., Gmail, Yahoo, etc.)
If the lead information already includes an ‘email’ field, it will be returned unchanged in the response without attempting to find or validate a new email address. However, it will have the status "OK"
and the type depending on the email address.
Error Response (400)
Rate Limits
The API is rate limited to 1000 requests per minute per API key.