Email Finding Zerobounce API
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
Pricing
One price, in dollars
pay per request · no subscription · fallbacks added as the catalog growsCall it
Make your first request
POST /v1/run/email_finding.zerobounce · same shape for every APIimport 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())
{
"data": {
"companyName": "Acme Inc",
"confidence": "a1b2c3d4",
"didYouMean": "a1b2c3d4",
"domain": "example.com",
"email": "alex@example.com",
"failureReason": "example"
},
"found": true
}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 30dcurl -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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| domain | string | "hubspot.com"Company domain to search, e.g. hubspot.com. |
| firstName | string | "Dharmesh"First name of the person to find. |
| lastName | string | "Shah"Last name of the person to find. |
| middleName | string | Middle name, when the company's address format uses one. |
| Response | ||
| data | object | The address found, or null when ZeroBounce found none. |
| data.companyName | string | Company ZeroBounce associates with the domain. |
| data.confidence | string | ZeroBounce's confidence in the address: high, medium, low or undetermined. |
| data.didYouMean | string | Corrected domain when ZeroBounce spots a likely typo. |
| data.domain | string | Domain the address belongs to. |
| data.email | string | The email address ZeroBounce found. |
| data.failureReason | string | Why ZeroBounce could not answer with more confidence. |
| found | boolean | False when ZeroBounce returned no answer for the request. |
| Price | ||
| Price per request | USD | $0.6552 |
| Price /1k req | USD | $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.
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.