Skip to main content
For the /api/individual_reveals endpoint, provide one of the following input options per request. Different inputs offer varying levels of coverage and accuracy and are listed below from highest to lowest.
  1. LinkedIn URL (strongly recommended) - Provides the highest performing results
  2. Full name + company domain and/or company name - Including a company domain improves match accuracy, as domains are unique while company names may have duplicates. This option provides the next best-performing results.
  3. Email address - Use only if other input options are unavailable

Payload Examples

Option 1: LinkedIn URL

{
  "individual_reveal": {
    "profile_url": "https://www.linkedin.com/in/stephen-hakami-5babb21b0/"
  },
  "enrichment_level": "partial"
}

Option 2: Full Name + Company Domain

{
  "individual_reveal": {
    "full_name": "Stephen Hakami",
    "domain": "wiza.co"
  },
  "enrichment_level": "partial"
}

Option 2b: Full Name + Company Name

{
  "individual_reveal": {
    "full_name": "Stephen Hakami",
    "company": "Wiza"
  },
  "enrichment_level": "partial"
}

Option 3: Email Address

{
  "individual_reveal": {
    "email": "stephen@wiza.co"
  },
  "enrichment_level": "partial"
}