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

Pricing

One price, in dollars

Providers
Allegrow- served- uptime- p50$14.40/1k reqflat

Try it

Make your first request

Open in
Get a free key
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 30d
POST /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"}'
FieldTypeExample value
Request body
emailstring"tim@apollo.io"Email address to validate.
Response
dataobjectNormalized validation result.
data.allegrowStatusstringThe 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.domainstringEmail domain.
data.emailstringValidated email address.
data.isCatchAllbooleanWhether the domain accepts mail for arbitrary recipients.
data.isRoleAccountbooleanWhether the mailbox appears to be a role account.
data.mxProviderstringDetected mail provider.
data.mxRecordsstring[]MX record hosts published by the email domain.
data.providerRequestIdstringThe 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.subStatusstringMore specific validation result when available.
data.validatedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
foundbooleanWhether the source returned a completed validation result, including negative verdicts.
Price
Price per requestUSD$0.0144
Price /1k reqUSD$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.