Skip to main content
POST
/
email
/
personal
Find Personal Email
curl --request POST \
  --url https://api.groweasy.io/email/personal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "John",
  "lastName": "Smith",
  "linkedinUrl": "<string>",
  "location": "San Francisco, CA"
}
'
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "confidence": 0.85
  }
}

Example

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

Response

{
  "success": true,
  "data": {
    "email": "[email protected]",
    "confidence": 0.85
  }
}

With Location

Add location for better disambiguation when searching for common names:
curl -X POST "https://api.groweasy.io/email/personal" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "John",
    "lastName": "Smith",
    "linkedinUrl": "https://linkedin.com/in/johnsmith",
    "location": "San Francisco, CA"
  }'

Use Cases

Personal email lookup is useful when:
  • Business email bounced or is unavailable
  • Reaching out for non-business purposes
  • The person is a founder/freelancer without a company domain
  • Following up after someone leaves a company

Authorizations

Authorization
string
header
required

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

Body

application/json

Person information

firstName
string
required

First name of the person

Example:

"John"

lastName
string
required

Last name of the person

Example:

"Smith"

linkedinUrl
string<uri>

LinkedIn profile URL for better accuracy

location
string

Location for disambiguation

Example:

"San Francisco, CA"

Response

Personal email found successfully

success
boolean
Example:

true

data
object