API reference
Find email
Find someone's work email by name and company domain.
POST
/v1/findParameters
ParameterTypeDescription
first_namereqlast_namereqdomainreqRequest
curl -X POST https://api.gtmcli.com/v1/find \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"first_name": "Patrick", "last_name": "Collison", "domain": "stripe.com"}'Response
200 OKjson
{
"email": "pc@stripe.com",
"status": "valid",
"convention": "flast",
"confidence": 1,
"provider": "other"
}Response fields
ParameterTypeDescription
emailstatusconventionconfidenceproviderStatus values
validEmail found and verified by the mail server.1 creditvalid_catchallBest guess on a catchall domain. Check confidence score.1 creditcatchallDomain accepts all emails. Generated a likely address but cannot verify.Freenot_foundCould not determine the email address.FreeINFO
The finder tries up to 16 naming conventions (first.last, flast, firstl, etc.) and verifies each one against the mail server in real time. It is not a database lookup.
Confidence scores
1.0Verified by mail server. The mailbox exists.0.7-0.99High confidence. Known convention at this domain.0.3-0.69Moderate. Catchall domain with convention match.<0.3Low confidence guess.Errors
400Missing required fields (first_name, last_name, domain).401Missing or invalid API key.402Insufficient credits.429Rate limit exceeded.