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.
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())
{
"data": {
"activeInDays": 42,
"email": "alex@example.com",
"firstSeenUtc": 12.5,
"hasActivity": true
},
"found": true
}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 30dcurl -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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| string | "dshah@hubspot.com"Email address to check for activity. | |
| Response | ||
| data | object | The activity answer for the address, or null when ZeroBounce returned none. |
| data.activeInDays | integer | How recently the address was active, in days. ZeroBounce buckets this rather than giving an exact figure. |
| data.email | string | The address that was checked. |
| data.firstSeenUtc | number | UTC epoch timestamp in seconds (Unix time) ZeroBounce first saw activity from the address. Multiply by 1000 for a JS Date in milliseconds. |
| data.hasActivity | boolean | True when ZeroBounce has seen engagement from this address. |
| found | boolean | False when ZeroBounce returned no answer for the request. |
| Price | ||
| Price per request | USD | $0.0336 |
| Price /1k req | USD | $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.