v1
latestOpenAPI 3.0.12026-07-26131186.5 KBIndividual 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
Example request
{
"individual_reveal": {
"profile_url": "https://www.linkedin.com/in/stephen-hakami-5babb21b0/"
}
}Response
successful
Example response
{
"status": {
"code": 200,
"message": "🧙 Wiza is working on it!"
},
"type": "individual_reveal",
"data": {
"id": 32,
"status": "queued"
}
}