Email API

Empower your applications with our robust Email API. Streamline communication, send and receive emails seamlessly, and enhance user engagement.

Here is the list of default parameters you can use with this API:

This API can be used in two ways:

1. By using the ID parameter from the Employees API

API Example

cURL "https://api.enrichmentapi.io/find_email?api_key=APIKEY&id=1&domain=xxxapi.com"

API Response

[
    {
        "email": "[email protected]",
        "verified": true,
        "score": 100,
        "processedAt": "2023-09-09T12:05:16.780Z",
        "uid": 1
    }
]

2. By using first name and last name of a person

API Example

cURL "https://api.enrichmentapi.io/find_email?api_key=APIKEY&first_name=xxx&last_name=yyy&domain=xxxapi.com"

API Response

[
  {
    "name": "xxx yyy",
    "email": "[email protected]",
    "verified": true,
    "score": 100
  }
]

Last updated