Email Finding API

Email Finding Zerobounce API

Find a person's work email at a company domain from their name, with ZeroBounce's confidence in the guess.

POST/v1/run/email_finding.zerobounce
Requests
-
30d

Pricing

One price, in dollars

Providers
Dolphin- served- uptime- p50$655.20/1k reqflat

Call it

Make your first request

import os, requests

res = requests.post(
    "https://api.getanyapi.com/v1/run/email_finding.zerobounce",
    headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"},
    json={
        "domain": ""
    },
)
print(res.json())
Open in
Get a free key
Sample response
{
  "data": {
    "companyName": "Acme Inc",
    "confidence": "a1b2c3d4",
    "didYouMean": "a1b2c3d4",
    "domain": "example.com",
    "email": "alex@example.com",
    "failureReason": "example"
  },
  "found": true
}
Response interface
interface EmailFindingZerobounceResponse {
  data: {
    companyName?: string;
    confidence?: string;
    didYouMean?: string;
    domain?: string;
    email: string;
    failureReason?: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-14 · uptime and latency measured over 30d
POST /v1/run/email_finding.zerobounce
curl -X POST https://api.getanyapi.com/v1/run/email_finding.zerobounce \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain":"hubspot.com","firstName":"Dharmesh","lastName":"Shah"}'
FieldTypeExample value
Request body
domainstring"hubspot.com"Company domain to search, e.g. hubspot.com.
firstNamestring"Dharmesh"First name of the person to find.
lastNamestring"Shah"Last name of the person to find.
middleNamestringMiddle name, when the company's address format uses one.
Response
dataobjectThe address found, or null when ZeroBounce found none.
data.companyNamestringCompany ZeroBounce associates with the domain.
data.confidencestringZeroBounce's confidence in the address: high, medium, low or undetermined.
data.didYouMeanstringCorrected domain when ZeroBounce spots a likely typo.
data.domainstringDomain the address belongs to.
data.emailstringThe email address ZeroBounce found.
data.failureReasonstringWhy ZeroBounce could not answer with more confidence.
foundbooleanFalse when ZeroBounce returned no answer for the request.
Price
Price per requestUSD$0.6552
Price /1k reqUSD$655.20

FAQ

About the Email Finding Zerobounce API

The AnyAPI Email Finding Zerobounce API returns Email Finding zerobounce data as normalized JSON from one POST call to /v1/run/email_finding.zerobounce. Find a person's work email at a company domain from their name, with ZeroBounce's confidence in the guess. AnyAPI returns one normalized schema whichever source serves it. It costs from $655.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $655.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Find a person's work email at a company domain from their name, with ZeroBounce's confidence in the guess. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.