Email Verification API

Email Verification Zerobounce activity API

Check whether an email address has shown recent activity across ZeroBounce's engagement network before you re-engage it. A no-activity answer is a successful, billable result.

POST/v1/run/email_verification.zerobounce_activity
Requests
-
30d

Pricing

One price, in dollars

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

Call it

Make your first request

import os, requests

res = requests.post(
    "https://api.getanyapi.com/v1/run/email_verification.zerobounce_activity",
    headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"},
    json={
        "email": ""
    },
)
print(res.json())
Open in
Get a free key
Sample response
{
  "data": {
    "activeInDays": 42,
    "email": "alex@example.com",
    "firstSeenUtc": 12.5,
    "hasActivity": true
  },
  "found": true
}
Response interface
interface EmailVerificationZerobounceActivityResponse {
  data: {
    activeInDays?: number;
    email: string;
    firstSeenUtc?: number;
    hasActivity: boolean;
  } | 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-16 · uptime and latency measured over 30d
POST /v1/run/email_verification.zerobounce_activity
curl -X POST https://api.getanyapi.com/v1/run/email_verification.zerobounce_activity \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email":"dshah@hubspot.com"}'
FieldTypeExample value
Request body
emailstring"dshah@hubspot.com"Email address to check for activity.
Response
dataobjectThe activity answer for the address, or null when ZeroBounce returned none.
data.activeInDaysintegerHow recently the address was active, in days. ZeroBounce buckets this rather than giving an exact figure.
data.emailstringThe address that was checked.
data.firstSeenUtcnumberUTC epoch timestamp in seconds (Unix time) ZeroBounce first saw activity from the address. Multiply by 1000 for a JS Date in milliseconds.
data.hasActivitybooleanTrue when ZeroBounce has seen engagement from this address.
foundbooleanFalse when ZeroBounce returned no answer for the request.
Price
Price per requestUSD$0.0336
Price /1k reqUSD$33.60

FAQ

About the Email Verification Zerobounce activity API

The AnyAPI Email Verification Zerobounce activity API returns Email Verification zerobounce activity data as normalized JSON from one POST call to /v1/run/email_verification.zerobounce_activity. Check whether an email address has shown recent activity across ZeroBounce's engagement network before you re-engage it. A no-activity answer is a successful, billable result. AnyAPI returns one normalized schema whichever source serves it. It costs from $33.60 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $33.60 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.

Check whether an email address has shown recent activity across ZeroBounce's engagement network before you re-engage it. A no-activity answer is a successful, billable result. 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.