Skip to main content

Lookup Email

Endpoint

  • URL: https://api.profileapi.com/2024-03-01/email-contacts/lookup
  • HTTP Method: POST

Request

Parameters

Id (Option A)

  • Key: id
  • Data Type: uuid
  • Description: A universally unique identifier (UUID) compliant with RFC 4122, used to uniquely identify a person. Presented without hyphens.
  • Example: "9e6a55b258ef11edb8780242ac120002"

First Name (Option B)

  • Key: firstName
  • Data Type: string

Last Name (Option B)

  • Key: lastName
  • Data Type: string

Company Website (Option B)

  • Key: website
  • Data Type: url
  • Description: A link to the company's website, formatted according to RFC 3986 guidelines.
  • Example: https://acme.com

LinkedIn URL (Option C)

  • Key: linkedInUrl
  • Data Type: url
  • Description: URL to a LinkedIn profile.
  • Format: https://linkedin.com/in/[handle]
  • Example: https://linkedin.com/in/joedoe

Response

The response returns an array of email contact.

Example Response

{
"data": [
{
"email": "[email protected]",
"type": "professional",
"lastValidatedAt": "2020-08-12T02:12:33.231Z",
"scoreValue": 0.95
}
]
}