Email Verification API
Email Verification Allegrow API
Validate an email address and return its deliverability verdict and mailbox signals.
POST/v1/run/email_verification.allegrow
Requests
-
30d
Try it
Make your first request
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
"data": {
"allegrowStatus": "active",
"domain": "example.com",
"email": "alex@example.com",
"isCatchAll": true,
"isRoleAccount": true,
"mxProvider": "a1b2c3d4",
"mxRecords": [
"example"
],
"providerRequestId": "a1b2c3d4",
"status": "safe",
"subStatus": "active",
"validatedUtc": 1024
},
"found": true
}Response interface
interface EmailVerificationAllegrowResponse {
data: {
allegrowStatus?: string;
domain?: string;
email: string;
isCatchAll?: boolean;
isRoleAccount?: boolean;
mxProvider?: string;
mxRecords?: string[];
providerRequestId?: string;
status: "safe" | "do_not_mail_abuse" | "some_risk" | "block_bounce_risk" | "dead_email" | "spamtrap" | "more_time_required" | "missing_email";
subStatus?: string;
validatedUtc?: number;
} | 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-12 · uptime and latency measured over 30dPOST /v1/run/email_verification.allegrow
curl -X POST https://api.getanyapi.com/v1/run/email_verification.allegrow \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"tim@apollo.io"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| string | "tim@apollo.io"Email address to validate. | |
| Response | ||
| data | object | Normalized validation result. |
| data.allegrowStatus | string | The Allegrow dataset's own verdict field, returned verbatim as the source spells it (safe in the captured response). It duplicates status in the same response and is not remapped into the good/risky/bad vocabulary email.verify uses. |
| data.domain | string | Email domain. |
| data.email | string | Validated email address. |
| data.isCatchAll | boolean | Whether the domain accepts mail for arbitrary recipients. |
| data.isRoleAccount | boolean | Whether the mailbox appears to be a role account. |
| data.mxProvider | string | Detected mail provider. |
| data.mxRecords | string[] | MX record hosts published by the email domain. |
| data.providerRequestId | string | The source's own identifier for this validation, surfaced so a result can be traced back to the record the source created. |
| data.status | "safe" | "do_not_mail_abuse" | "some_risk" | "block_bounce_risk" | "dead_email" | "spamtrap" | "more_time_required" | "missing_email" | Deliverability verdict; negative verdicts are successful billable results. |
| data.subStatus | string | More specific validation result when available. |
| data.validatedUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| found | boolean | Whether the source returned a completed validation result, including negative verdicts. |
| Price | ||
| Price per request | USD | $0.0144 |
| Price /1k req | USD | $14.40 |
FAQ
About the Email Verification Allegrow API
The AnyAPI Email Verification Allegrow API returns Email Verification allegrow data as normalized JSON from one POST call to /v1/run/email_verification.allegrow. Validate an email address and return its deliverability verdict and mailbox signals. AnyAPI returns one normalized schema whichever source serves it. It costs from $14.40 per 1,000 requests, in US dollars with no subscription and no monthly minimum.
It costs from $14.40 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.
Validate an email address and return its deliverability verdict and mailbox signals. 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.
More to call