CRM

emailfinder.dev + Pipedrive

Connect emailfinder.dev to Pipedrive to enrich contacts with verified email addresses when they enter your pipeline — via Pipedrive's workflow automations, Zapier, or a direct API-to-API integration.

What you can do with this integration

  • Auto-enrich new Pipedrive persons with verified emails on creation
  • Find emails for deal contacts before sending a proposal
  • Enrich imported prospect lists with emails before the first touchpoint
  • Look up decision-maker emails for companies already in your pipeline

How to set it up

1

Set up a Pipedrive automation

In Pipedrive, go to Automations and create a new workflow triggered when a Person is created.

2

Add a webhook action via Zapier

Use Zapier as a bridge: trigger on new Pipedrive Person, call emailfinder.dev, and write the email back using Pipedrive's Update Person action.

3

Or use the direct API

Subscribe to Pipedrive webhooks for person.added events. In your webhook handler, call emailfinder.dev and update the person record via Pipedrive's API.

4

Map the enriched data

Write the verified_email back to the person's email field. Optionally store job title and LinkedIn URL in custom fields.

Code example

// Pipedrive webhook → emailfinder.dev → Pipedrive update
// 1. Receive Pipedrive person.added webhook
const { name, org_name } = event.data;
const domain = extractDomain(org_name); // your helper

// 2. Call emailfinder.dev
const res = await fetch(
  `https://www.emailfinder.dev/api/find-email/person?full_name=${encodeURIComponent(name)}&domain=${domain}`,
  { headers: { Authorization: `Bearer ${API_KEY}` } }
);
const { valid_email } = await res.json();

// 3. Update Pipedrive person
await fetch(`https://api.pipedrive.com/v1/persons/${personId}`, {
  method: 'PUT',
  body: JSON.stringify({ email: [{ value: valid_email }] })
});

Pipedrive integration FAQ

Does Pipedrive have a native integration with emailfinder.dev?

Not yet natively. Use Zapier, Make, or a custom webhook integration to connect the two. Both approaches are straightforward and take under 30 minutes to set up.

Can I enrich an existing Pipedrive database in bulk?

Yes. Export your Persons to CSV, run the list through the emailfinder.dev API, and re-import. Filter for rows where Email is empty to avoid redundant lookups.

What data does emailfinder.dev return for Pipedrive contacts?

The person endpoint returns the verified email. The decision-maker endpoint also returns full name, job title, and LinkedIn URL — useful for enriching custom Pipedrive fields.

How do I get the company domain from Pipedrive?

Use the organization's website field or derive it from the company name. The emailfinder.dev person endpoint also accepts company_name directly if you don't have the domain.

Other integrations

Start integrating with Pipedrive

Free credits included. No credit card required. REST API with Bearer token auth.