Catalog/Email Finding/Zerobounce domain
POST

Email Finding Zerobounce domain API

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

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_domain · same shape for every API
import 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())
Open in
Get a free key
Sample response
{
  "data": {
    "companyName": "Acme Inc",
    "confidence": "a1b2c3d4",
    "didYouMean": "a1b2c3d4",
    "domain": "example.com",
    "failureReason": "example",
    "format": "example",
    "otherFormats": [
      {
        "confidence": "a1b2c3d4",
        "format": "example"
      }
    ]
  },
  "found": true
}
Response interface
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 30d
POST /v1/run/email_finding.zerobounce_domain
curl -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"}'
FieldTypeExample value
Request body
domainstring"hubspot.com"Company domain to inspect, e.g. hubspot.com.
Response
dataobjectThe domain's address formats, or null when ZeroBounce holds none.
data.companyNamestringCompany ZeroBounce associates with the domain.
data.confidencestringConfidence in that format: high, medium or low.
data.didYouMeanstringCorrected domain when ZeroBounce spots a likely typo.
data.domainstringThe domain that was inspected.
data.failureReasonstringWhy ZeroBounce could not answer with more confidence.
data.formatstringThe address format ZeroBounce is most confident the domain uses, e.g. first.last or flast.
data.otherFormatsobject[]Every other address format ZeroBounce has seen on this domain, most confident first.
data.otherFormats[].confidencestringConfidence in that format: high, medium or low.
data.otherFormats[].formatstringAddress format, e.g. last.first.
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 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.

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.

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