Skip to main content
POST
/
email
/
find
Find Business Email
curl --request POST \
  --url https://api.groweasy.io/email/find \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "John",
  "lastName": "Smith",
  "company": "acme.com",
  "linkedinUrl": "<string>"
}
'
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "confidence": 0.95,
    "sources": [
      "linkedin",
      "company_website"
    ]
  }
}

Example

curl -X POST "https://api.groweasy.io/email/find" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "John",
    "lastName": "Smith",
    "company": "acme.com"
  }'

Response

{
  "success": true,
  "data": {
    "email": "[email protected]",
    "confidence": 0.95,
    "sources": ["linkedin", "company_website"]
  }
}

With LinkedIn URL

For better accuracy, include the person’s LinkedIn profile URL:
curl -X POST "https://api.groweasy.io/email/find" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "John",
    "lastName": "Smith",
    "company": "acme.com",
    "linkedinUrl": "https://linkedin.com/in/johnsmith"
  }'

Confidence Scores

ScoreMeaning
0.9 - 1.0Very high confidence, verified email
0.7 - 0.9High confidence, likely correct
0.5 - 0.7Medium confidence, pattern-based guess
< 0.5Low confidence, consider verifying

Authorizations

Authorization
string
header
required

API key authentication. Get your API key from the GrowEasy dashboard.

Body

application/json

Person and company information

firstName
string
required

First name of the person

Example:

"John"

lastName
string
required

Last name of the person

Example:

"Smith"

company
string
required

Company name or domain

Example:

"acme.com"

linkedinUrl
string<uri>

Optional LinkedIn profile URL for better accuracy

Response

Email found successfully

success
boolean
Example:

true

data
object