New260+ blocks and 240+ tools are now fully documented
DocumentationReferenceTool IntegrationsMarketing & Outreach
Tool

Email Bison

Find and verify professional email addresses with Email Bison

Find professional email addresses by name and domain, verify deliverability, and enrich contact data at scale with Email Bison. Use it in outreach workflows to build validated prospect lists before handing off to an Agent or sending a message.

Overview

PropertyValue
Typeemailbison
CategoryTool — CRM
AuthAPI Key (X-API-Key header)

Operations

OperationTool IDDescription
Find Emailemailbison_find_emailFind the email address of a person by their first name, last name, and company domain
Verify Emailemailbison_verify_emailCheck whether an email address is valid and deliverable
Bulk Find Emailsemailbison_bulk_findFind email addresses for multiple people in a single request
Domain Searchemailbison_domain_searchSearch for all email addresses associated with a company domain

Configuration

SettingTypeRequiredDescription
apiKeystring (secret)YesYour Email Bison API key. Passed as the X-API-Key header on every request. Store it as {{EMAILBISON_API_KEY}} and never hard-code it.
firstNamestringYes (Find Email)First name of the person to look up.
lastNamestringYes (Find Email)Last name of the person to look up.
domainstringYes (Find Email, Domain Search)Company domain to search, e.g. example.com.
emailstringYes (Verify Email)Email address to verify.
peoplestringYes (Bulk Find)JSON array of people objects, each with first_name, last_name, and domain keys. Example: [{"first_name":"Jane","last_name":"Smith","domain":"acme.com"}].
limitnumberNo (Domain Search)Maximum number of email addresses to return from a domain search.

Outputs

Find Email (emailbison_find_email)

FieldTypeDescription
emailstringThe found email address
scorenumberConfidence score for the match (optional)
statusstringEmail status returned by the API
firstNamestringFirst name echoed back from the response
lastNamestringLast name echoed back from the response
domainstringCompany domain echoed back from the response

Verify Email (emailbison_verify_email)

FieldTypeDescription
emailstringThe verified email address
statusstringVerification status (e.g. valid, invalid, catch-all)
isValidbooleantrue if the email is valid and deliverable
scorenumberConfidence score for the verification result (optional)

Bulk Find Emails (emailbison_bulk_find)

FieldTypeDescription
resultsjsonArray of email find results, one entry per person submitted
FieldTypeDescription
emailsjsonArray of email addresses found for the domain
domainstringThe domain that was searched
totalnumberTotal number of email addresses found

Example

[Starter] → [Email Bison: Find Email] → [Email Bison: Verify Email] → [Agent: draft outreach]

Pass {{EMAILBISON_API_KEY}} as the API Key in both blocks. Supply {{starter.firstName}}, {{starter.lastName}}, and {{starter.domain}} to the Find Email block, then pipe {{emailBison.email}} into the Verify Email block's email field. The Agent receives the verified address and can draft a personalised outreach message only when {{emailBison.isValid}} is true.

Tips

  • Store your API key as a secret. Reference it as {{EMAILBISON_API_KEY}} in every block rather than pasting it directly into the workflow.
  • Always verify after finding. Chain a Verify Email block after Find Email to filter out addresses that score low or return a non-valid status before sending.
  • Use Bulk Find for lists. When you have a CSV or JSON array of contacts upstream, build the people JSON with an Agent block and pass it to Bulk Find instead of looping over individual Find Email calls — it is far faster and uses fewer API credits.
  • Domain Search for prospecting. Use Domain Search to enumerate contacts at a target company, then feed the emails array into a Loop block to verify and qualify each one individually.
  • Check score before acting. Both Find Email and Verify Email return an optional score. Filter on high-confidence results (e.g. score above 80) to keep bounce rates low in downstream email steps.