Skip to main content
GET
/
people
/
{personId}
/
email
Get person's email
curl --request GET \
  --url https://app.tryspecter.com/api/v1/people/{personId}/email \
  --header 'X-API-Key: <api-key>'
{
  "email": "j.smith@example.com",
  "type": "personal"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

personId
string
required

The ID of the person being requested

Query Parameters

type
enum<string>

Determine if only a specific kind of email should be returned.

Available options:
professional,
personal

Response

The email address of the person if found

email
string
Example:

"j.smith@example.com"

type
enum<string>
Available options:
professional,
personal
Example:

"personal"

I