POST

Email Finding Zerobounce API

/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.

Category enrichmentRequests / mo -Routing 1 lane · no failover
Get ~100 free requests

Pricing

One price, in dollars

pay per request · no subscription · fallbacks added as the catalog grows
Request
Gateway request
discovered operation
↓
Router
↓
Providers · 1
↳ One lane serves this endpoint today, so a failed call has nowhere to fail over to. Failed attempts are never billed. Uptime, latency and traffic are measured through the gateway, last 30 days.

Call it

Make your first request

POST /v1/run/email_finding.zerobounce · same shape for every API
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-03 · 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.

Get started

Two ways to start on AnyAPI

Humans fund a USD wallet and pay per request. Agents point a coding agent at one URL and onboard themselves.

Get ~100 free requests
Works with
Terminal agentsClaude CodeCursorCodexMCP clients