An email finder produces a string. An email verifier produces a state

These two tools are sold as one category and they are not the same job. A finder answers "what is this person's address?" A verifier answers "does that mailbox accept mail?" The gap between the two answers is where bounce rates are made.

What each one actually returns

Email finderEmail verifier
InputA name, a domain, a title, a companyAn address you already have
OutputA string that matches the domain's naming patternvalid, invalid or unknown
Can it be wrong in a way you notice?No - every guess looks like an addressYes - an invalid row is a visible cost
Billing unitPer result returnedPer address checked

The finder's failure mode is silent by design. first.last@company.com is a valid string, a plausible address and possibly a mailbox that was never issued. Nothing in the finder's response distinguishes it from a real one.

Why the handoff leaks

Run the two tools as separate steps and the file passes through a gap that costs three ways:

If a purchase decision is between a bigger finder and a verifier, the verifier changes the outcome more - an unverified find is a cost, a found-and-verified contact is inventory.

Doing both in one request

TAPAC returns the contact and its mailbox state from the same call, so there is no handoff to schedule and no second vendor to pay:

curl -s -X POST https://tapacapi.com/v1/contacts/search \
  -H "Authorization: Bearer ***" \
  -H "Content-Type: application/json" \
  -d '{"industry":"saas","job_titles":["vp marketing"],"company_size":"51-200","location":"france","source":"website","limit":25}'

Every row carries the person, the company, the title, the source the address was published in and the SMTP state of the mailbox. From an agent it is one tool call - npx -y @tapacapi/mcp, or the hosted endpoint at https://tapacapi.com/mcp with tapac_find_contacts and tapac_status. Single addresses already in your CRM go through POST /v1/contacts/verify.

The question to ask both vendors

Ask the finder how it reports an address it could not confirm, and ask the verifier how a catch-all domain is reported. A finder that has no "unconfirmed" state and a verifier that prints valid for catch-all are describing a file cleaner than the one you own. The honest answer for a catch-all mailbox is unknown.

Where to go next

← Back to TAPAC