curl --request POST \
--url https://api.agntdata.dev/v1/data/agnt/people/email-finder \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "Patrick",
"last_name": "Collison",
"domain": "stripe.com",
"max_cost_cents": 2.5
}
'import requests
url = "https://api.agntdata.dev/v1/data/agnt/people/email-finder"
payload = {
"first_name": "Patrick",
"last_name": "Collison",
"domain": "stripe.com",
"max_cost_cents": 2.5
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
first_name: 'Patrick',
last_name: 'Collison',
domain: 'stripe.com',
max_cost_cents: 2.5
})
};
fetch('https://api.agntdata.dev/v1/data/agnt/people/email-finder', 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.agntdata.dev/v1/data/agnt/people/email-finder",
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([
'first_name' => 'Patrick',
'last_name' => 'Collison',
'domain' => 'stripe.com',
'max_cost_cents' => 2.5
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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.agntdata.dev/v1/data/agnt/people/email-finder"
payload := strings.NewReader("{\n \"first_name\": \"Patrick\",\n \"last_name\": \"Collison\",\n \"domain\": \"stripe.com\",\n \"max_cost_cents\": 2.5\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
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.agntdata.dev/v1/data/agnt/people/email-finder")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"first_name\": \"Patrick\",\n \"last_name\": \"Collison\",\n \"domain\": \"stripe.com\",\n \"max_cost_cents\": 2.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agntdata.dev/v1/data/agnt/people/email-finder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"first_name\": \"Patrick\",\n \"last_name\": \"Collison\",\n \"domain\": \"stripe.com\",\n \"max_cost_cents\": 2.5\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"email": "<string>",
"status": "valid",
"score": 123,
"sources": "<unknown>",
"position": "<string>",
"full_name": "<string>"
},
"meta": {
"costCents": 123,
"purchasedBalanceCents": 123,
"subscriptionRemainingCents": 123,
"cached": true,
"latencyMs": 123,
"priceRange": {
"minCents": 123,
"maxCents": 123
},
"budgetCents": 123,
"budgetCentsPerRecord": 123,
"providersAttempted": 123,
"fieldsReturned": [
"<string>"
],
"fieldsMissing": [
"<string>"
],
"records": 123
}
}Find a person's professional email
Find a verified professional email for a person at a company. Identifier fields are at the TOP LEVEL of the body (NOT inside an identifiers object): first_name + last_name (or full_name) plus domain (or company / company_name). LinkedIn URL/handle is not currently supported here — if that is all you have, call /people/enrich first with identifiers.linkedin_url to resolve name + domain, then call this endpoint. agntdata waterfalls cheapest-first across providers until an email is returned (or your max_cost_cents budget is exhausted). If you already know the email and want to look up other fields, use /people/enrich instead with identifiers.email.
curl --request POST \
--url https://api.agntdata.dev/v1/data/agnt/people/email-finder \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "Patrick",
"last_name": "Collison",
"domain": "stripe.com",
"max_cost_cents": 2.5
}
'import requests
url = "https://api.agntdata.dev/v1/data/agnt/people/email-finder"
payload = {
"first_name": "Patrick",
"last_name": "Collison",
"domain": "stripe.com",
"max_cost_cents": 2.5
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
first_name: 'Patrick',
last_name: 'Collison',
domain: 'stripe.com',
max_cost_cents: 2.5
})
};
fetch('https://api.agntdata.dev/v1/data/agnt/people/email-finder', 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.agntdata.dev/v1/data/agnt/people/email-finder",
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([
'first_name' => 'Patrick',
'last_name' => 'Collison',
'domain' => 'stripe.com',
'max_cost_cents' => 2.5
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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.agntdata.dev/v1/data/agnt/people/email-finder"
payload := strings.NewReader("{\n \"first_name\": \"Patrick\",\n \"last_name\": \"Collison\",\n \"domain\": \"stripe.com\",\n \"max_cost_cents\": 2.5\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
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.agntdata.dev/v1/data/agnt/people/email-finder")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"first_name\": \"Patrick\",\n \"last_name\": \"Collison\",\n \"domain\": \"stripe.com\",\n \"max_cost_cents\": 2.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agntdata.dev/v1/data/agnt/people/email-finder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"first_name\": \"Patrick\",\n \"last_name\": \"Collison\",\n \"domain\": \"stripe.com\",\n \"max_cost_cents\": 2.5\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"email": "<string>",
"status": "valid",
"score": 123,
"sources": "<unknown>",
"position": "<string>",
"full_name": "<string>"
},
"meta": {
"costCents": 123,
"purchasedBalanceCents": 123,
"subscriptionRemainingCents": 123,
"cached": true,
"latencyMs": 123,
"priceRange": {
"minCents": 123,
"maxCents": 123
},
"budgetCents": 123,
"budgetCentsPerRecord": 123,
"providersAttempted": 123,
"fieldsReturned": [
"<string>"
],
"fieldsMissing": [
"<string>"
],
"records": 123
}
}Authorizations
Bearer token. Pass your agntdata API key as: Authorization: Bearer agnt_live_...
Body
Identifier fields are TOP-LEVEL (NOT nested under identifiers). Provide a name (first_name+last_name or full_name) AND a company (domain or company/company_name). LinkedIn URL/handle is not currently supported here — if that is all you have, call /people/enrich first with identifiers.linkedin_url to resolve name + domain, then call this endpoint.
Person's first name. Pair with last_name (or use full_name instead).
1Person's last name. Pair with first_name.
1Person's full name — alternative to first_name + last_name.
1Company root domain (e.g. "tesla.com"). Strongest company signal.
1Company name (alias of company_name). Use when domain is unknown.
1Company name (alias of company).
1x >= 0