Email Finding Zerobounce domain API
Read the email address format a company domain uses, with every alternative format ZeroBounce has seen and how confident it is in each. Use it to build addresses for a whole account at once.
- 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_domain · same shape for every APIimport os, requests res = requests.post( "https://api.getanyapi.com/v1/run/email_finding.zerobounce_domain", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={ "domain": "" }, ) print(res.json())
{
"data": {
"companyName": "Acme Inc",
"confidence": "a1b2c3d4",
"didYouMean": "a1b2c3d4",
"domain": "example.com",
"failureReason": "example",
"format": "example",
"otherFormats": [
{
"confidence": "a1b2c3d4",
"format": "example"
}
]
},
"found": true
}interface EmailFindingZerobounceDomainResponse {
data: {
companyName?: string;
confidence?: string;
didYouMean?: string;
domain: string;
failureReason?: string;
format: string;
otherFormats?: {
confidence?: string;
format: 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_domain \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"hubspot.com"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| domain | string | "hubspot.com"Company domain to inspect, e.g. hubspot.com. |
| Response | ||
| data | object | The domain's address formats, or null when ZeroBounce holds none. |
| data.companyName | string | Company ZeroBounce associates with the domain. |
| data.confidence | string | Confidence in that format: high, medium or low. |
| data.didYouMean | string | Corrected domain when ZeroBounce spots a likely typo. |
| data.domain | string | The domain that was inspected. |
| data.failureReason | string | Why ZeroBounce could not answer with more confidence. |
| data.format | string | The address format ZeroBounce is most confident the domain uses, e.g. first.last or flast. |
| data.otherFormats | object[] | Every other address format ZeroBounce has seen on this domain, most confident first. |
| data.otherFormats[].confidence | string | Confidence in that format: high, medium or low. |
| data.otherFormats[].format | string | Address format, e.g. last.first. |
| 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 domain API
The AnyAPI Email Finding Zerobounce domain API returns Email Finding zerobounce domain data as normalized JSON from one POST call to /v1/run/email_finding.zerobounce_domain. Read the email address format a company domain uses, with every alternative format ZeroBounce has seen and how confident it is in each. Use it to build addresses for a whole account at once. 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.