Email Finder
Find email address of an individual using their name and company domain.
cURL 'https://api.enrich.so/v1/api/find-email?fullName=<FirstName LastName>&companyDomain=<example.com>'
--header 'Authorization: Bearer <token>'
--header 'Content-Type: application/json'const axios = require('axios');
axios.get('https://api.enrich.so/v1/api/find-email?fullName=<FirstName LastName>&companyDomain=<example.com>', {
headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.enrich.so/v1/api/find-email?fullName=<FirstName LastName>&companyDomain=<example.com>")
.get()
.addHeader("accept", "application/json")
.addHeader("authorization", "Bearer <token>")
.build();
Response response = client.newCall(request).execute();
Example response
Status Code: 202 ACCEPTED
{
"success": true,
"message": "Your request has been queued. Please try again later"
}Status Code: 200 OK
{
"email": "[email protected]",
"firstName": "username",
"lastName": "lastname",
"domain": "example.com",
"acceptAll": true,
"found": true,
"total_credits": 25000,
"credits_used": 229,
"credits_remaining": 24771
}Status code: 404 NOT FOUND
Last updated