GET
/
api
/
v2
/
email
/
finder
curl --location --request GET "https://piloterr.com/api/v2/email/finder?query=firstname+lastname&company_domain=xxxx.com" \
--header "Content-Type: application/json" \
--header "x-api-key: <token>"
{
    "email": "first_name.last_name@xxx.com",
    "status": "valid",
    "last_name": "last_name",
    "first_name": "first_name",
    "company_domain": "xxxx.com"
}
x-api-key
string
required
This parameter specifies the private key you’ll need for Piloterr access.

Parameters

query
string
Full name of the person you want to find the email address for.
company_domain
string
The company’s domain, multiple formats accepted piloterr.com or https://www.piloterr.com
company_name
string
The company name of the person you want to find the email address for Piloterr

Response

curl --location --request GET "https://piloterr.com/api/v2/email/finder?query=firstname+lastname&company_domain=xxxx.com" \
--header "Content-Type: application/json" \
--header "x-api-key: <token>"
{
    "email": "first_name.last_name@xxx.com",
    "status": "valid",
    "last_name": "last_name",
    "first_name": "first_name",
    "company_domain": "xxxx.com"
}