v1

latestOpenAPI 3.0.12026-07-26131186.5 KB
Individual Reveals

Start Individual Reveal

Start an individual reveal. An individual reveal is a single contact enrichment. You can provide a name, company, and domain, or an email, or a LinkedIn profile URL.

Either company (company name) or domain is required when using contact details.

Once the reveal is completed, an update will be posted to the webhook URL as configured in your account settings . The payload will be the same as the response of the Get Individual Reveal endpoint. If you wish to do added authentication, the headers in the webhook request will include x-auth-key which will be a SHA256 hash of your api key.

You can get the status of the individual reveal by calling the GET /api/individual_reveals/:id endpoint.

post/api/individual_reveals

Request body

enrichment_level'none' | 'partial' | 'phone' | 'full' required

Enrichment level of the list.

Enrichment LevelDescription
noneWill enrich with contact's data when you provide a Linkedin profile url or email. But will not find emails or phone numbers
partialWill find email.
phoneWill find phone numbers.
fullWill find email and phone numbers.
callback_urlstring

URL to send the individual reveal update to. If not provided, the default webhook URL configured in your account settings will be used.

Example request

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

Response

successful

type'individual_reveal'

Example response

{
  "status": {
    "code": 200,
    "message": "🧙 Wiza is working on it!"
  },
  "type": "individual_reveal",
  "data": {
    "id": 32,
    "status": "queued"
  }
}