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
At least one of company_domain or company_name is required. If both are omitted, the API returns 400 status code.

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"
}