Find Email

Find someone's work email by name and company domain. GTMData tries 16 naming conventions via SMTP verification and returns the first verified match. Costs 1 credit for a valid result.

POST/v1/find

Parameters

first_namestring*
The contact's first name.
last_namestring*
The contact's last name.
domainstring*
The company domain (e.g. apple.com).

Request Example

cURL
curl -X POST https://api.gtmdata.co/v1/find \
  -H "Authorization: Bearer gtm_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{"first_name":"Tim","last_name":"Cook","domain":"apple.com"}'

Response Examples

Valid

Valid
{
  "email": "tcook@apple.com",
  "status": "valid",
  "provider": "other",
  "convention": "flast",
  "confidence": 1
}

Catch-All

Catch-All
{
  "email": "tim.cook@catchall-corp.com",
  "status": "catchall",
  "provider": "other",
  "convention": "first.last",
  "confidence": 0.85
}

Valid Catch-All

Valid Catch-All
{
  "email": "tim.cook@catchall-corp.com",
  "status": "valid_catchall",
  "provider": "other",
  "convention": "first.last",
  "confidence": 0.95
}

Not Found

Not Found
{
  "email": null,
  "status": "not_found",
  "provider": "other",
  "convention": null,
  "confidence": 0
}

Response Fields

FieldTypeDescription
emailstring | nullThe discovered email address, or null if not found
statusstringResult status: valid, valid_catchall, catchall, or not_found
providerstringEmail provider: google, microsoft, other
conventionstring | nullThe naming convention matched (e.g. first.last, flast)
confidencenumberConfidence score from 0 to 1

Naming Conventions

GTMData tests 16 common email naming conventions. Here are the most frequently seen patterns and their approximate frequency across B2B domains:

ConventionExampleFrequency
first.lasttim.cook@apple.com35-40%
firsttim@apple.com15-20%
firstlasttimcook@apple.com10-12%
flasttcook@apple.com5-7%
firstltimc@apple.com4-6%
first_lasttim_cook@apple.com3-5%
last.firstcook.tim@apple.com2-4%
lastcook@apple.com2-3%
f.lastt.cook@apple.com2-3%
first.ltim.c@apple.com1-2%
lastfirstcooktim@apple.com1-2%
lastfcookt@apple.com1-2%
Note: Only valid and valid_catchall results are charged (1 credit). The catchall and not_found statuses are free.