Webhooks
Parvenu allows you to send newly enriched contact data to another app via Webhooks when triggers occur. These are great for integrating with your CRM or Zapier.

The available Native Search webhooks include:
- When a contact is found from enrichment
{
"webhook_event": "new_enrichment_found",
"query": "xxx",
"email_format": "value",
"person_first_name": "value",
"person_last_name": "value",
"person_headline": "value",
"person_job_title": "value",
"person_location": "value",
"person_business_email": "value",
"person_personal_email": "value",
"person_company_name": "value",
"person_city": "value",
"person_linkedin_id": "value",
"person_linkedin_url": "value",
"company_name": "value",
"company_founded": "value",
"company_size": "value",
"company_type": "value",
"company_country": "value",
"company_industry": "value",
"company_address": "value",
"company_linkedin_url": "value",
"company_linkedin_id": "value",
"company_meta_title": "value",
"company_meta_description": "value",
"company_meta_keywords": "value",
"company_meta_phones": "value",
"company_meta_emails": "value"
}
- When a company is found from the Native Search
{
"webhook_event": "new_company_found",
"name": "value",
"domain": "value",
"industry": "value",
"locality": "value",
"country": "value",
"year_found": "value",
"size_range": "value",
"linkedin_url": "value",
"size": "value"
}
- When one local business is saved
{
"webhook_event": "new_local_business",
"title": "value",
"latitude": "value",
"longitude": "value",
"address": "value",
"link": "value",
"phone": "value",
"data_cid": "value",
"place_id": "value",
"reviews": "value",
"rating_value": "value",
"emails": "value"
}
- When one domain is found from a Company name
{
"webhook_event": "new_convert_name_domain",
"company_name": "value",
"company_domain": "value"
}

The available Social Media Webhooks include:
- When a contact is extracted from social media
{
"webhook_event": "new_linkedin_extracted",
"waiting": "value",
"email_first": "value",
"email_second": "value",
"first_name": "value",
"middle_name": "value",
"last_name": "value",
"url": "value",
"job_title": "value",
"company_name": "value",
"company_domain": "value",
"company_id": "value",
"city": "value",
"linkedin_id": "value",
"owner": "value",
"created_timestamp": "value"
}
- When a contact with an email is extracted from social media
{
"webhook_event": "new_linkedin_extracted_found",
"waiting": "value",
"email_first": "value",
"email_second": "value",
"first_name": "value",
"middle_name": "value",
"last_name": "value",
"url": "value",
"job_title": "value",
"company_name": "value",
"company_domain": "value",
"company_id": "value",
"city": "value",
"linkedin_id": "value",
"owner": "value",
"created_timestamp": "value"
}

The available Domain Scrape webhooks include:
- When a Domain is scraped
{
"webhook_event": "new_extract_email",
"query": "value",
"domain": "value",
"title": "value",
"description": "value",
"keywords": "value",
"phones": "value",
"twitter_url": "value",
"twitter_username": "value",
"facebook_url": "value",
"facebook_username": "value",
"google_plus_url": "value",
"google_plus_username": "value",
"youtube_url": "value",
"youtube_username": "value",
"instagram_url": "value",
"instagram_username": "value",
"linkedin_url": "value",
"linkedin_username": "value",
"github_url": "value",
"github_username": "value",
"company_email": "value"
}

The available Full Name + Domain Enrichment webhooks include:
- When an email is found from Full Name + Domain enrichment from a CSV
{
"webhook_event": "new_first_last_found",
"first_name": "value",
"last_name": "value",
"company_domain": "value",
"email": "value"
}
- When an email is found from Full Name + Domain enrichment on a single contact.
{
"webhook_event": "new_single_email_found",
"first_name": "value",
"last_name": "value",
"domain": "value",
"email": "value"
}
Last modified 6mo ago