Skip to main content
POST
/
people
/
by-email
Get person by email
curl --request POST \
  --url https://app.tryspecter.com/api/v1/people/by-email \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "person_id": "per_310bf5c3fda24292309031e0",
  "first_name": "Barney",
  "last_name": "Kelly-Wyatt",
  "linkedin_url": "https://www.linkedin.com/in/barney-kelly-wyatt",
  "company_id": "5e3a7f2b0aa7a3270a55f2a7",
  "score": 8
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Request to resolve an email address to a person.

email
string
required

Email of the person to look up.

Response

Successful match response containing person details and confidence score.

person_id
string
Example:

"per_310bf5c3fda24292309031e0"

first_name
string
Example:

"Barney"

last_name
string
Example:

"Kelly-Wyatt"

linkedin_url
string
Example:

"https://www.linkedin.com/in/barney-kelly-wyatt"

company_id
string
Example:

"5e3a7f2b0aa7a3270a55f2a7"

score
number<float>

Confidence score for the match (1–10).

Example:

8