Find Email
curl --request POST \
--url https://api.example.com/v1/tools/enrich/email \
--header 'Content-Type: application/json' \
--data '
{
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company_domain": "<string>"
}
'import requests
url = "https://api.example.com/v1/tools/enrich/email"
payload = {
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company_domain": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
full_name: '<string>',
first_name: '<string>',
last_name: '<string>',
company_domain: '<string>'
})
};
fetch('https://api.example.com/v1/tools/enrich/email', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/tools/enrich/email",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'full_name' => '<string>',
'first_name' => '<string>',
'last_name' => '<string>',
'company_domain' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/tools/enrich/email"
payload := strings.NewReader("{\n \"full_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/tools/enrich/email")
.header("Content-Type", "application/json")
.body("{\n \"full_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/tools/enrich/email")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"full_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyEnrichment
Find Email
Find email address for a person at a company
POST
/
v1
/
tools
/
enrich
/
email
Find Email
curl --request POST \
--url https://api.example.com/v1/tools/enrich/email \
--header 'Content-Type: application/json' \
--data '
{
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company_domain": "<string>"
}
'import requests
url = "https://api.example.com/v1/tools/enrich/email"
payload = {
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"company_domain": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
full_name: '<string>',
first_name: '<string>',
last_name: '<string>',
company_domain: '<string>'
})
};
fetch('https://api.example.com/v1/tools/enrich/email', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/tools/enrich/email",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'full_name' => '<string>',
'first_name' => '<string>',
'last_name' => '<string>',
'company_domain' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/tools/enrich/email"
payload := strings.NewReader("{\n \"full_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/tools/enrich/email")
.header("Content-Type", "application/json")
.body("{\n \"full_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/tools/enrich/email")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"full_name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyOverview
Find the email address for a person given their name and company domain. Uses multiple data providers to find and verify email addresses.Request Body
string
Full name of the person (alternative to first_name + last_name)
string
First name (required if full_name not provided)
string
Last name (required if full_name not provided)
string
required
Company domain (e.g., “microsoft.com”)
Response (202 - Processing)
{
"request_id": "req_abc123",
"status": "processing",
"tool": "enrich_email",
"message": "Email enrichment job queued successfully"
}
Job Result
{
"status": "completed",
"result": {
"email": "[email protected]",
"full_name": "Satya Nadella",
"company_domain": "microsoft.com",
"found": true
}
}
{
"status": "completed",
"result": {
"email": null,
"full_name": "Satya Nadella",
"company_domain": "microsoft.com",
"found": false
}
}
SDK Usage
// Using full name
const result = await agent.findEmail({
full_name: 'Satya Nadella',
company_domain: 'microsoft.com'
});
// Using first + last name
const result = await agent.findEmail({
first_name: 'Satya',
last_name: 'Nadella',
company_domain: 'microsoft.com'
});
if (result.found) {
console.log(`Email: ${result.email}`);
} else {
console.log('Email not found');
}
Example: Research and Outreach Flow
// 1. Search for decision makers
const people = await agent.peopleSearch({
job_titles: ['CTO', 'VP Engineering'],
company_domains: ['stripe.com'],
limit: 5
});
// 2. Find their emails
for (const person of people.results) {
const email = await agent.findEmail({
full_name: person.full_name,
company_domain: person.company_domain
});
if (email.found) {
// 3. Send outreach email
await agent.email({
to: email.email,
subject: `Quick question for ${person.first_name}`,
body: `Hi ${person.first_name},...`
});
}
}
⌘I