Skip to content
Eden Engine

Email Address Validator (Syntax, MX, Disposable & Role Checks)

omnial/email-validate

Checks one or more email addresses (comma-separated, up to 25 per call) for RFC syntax validity, a live MX record lookup, disposable/throwaway domain membership, and role-account or free-provider status, returning a per-address verdict with the reasons behind it.

activeper callv1
Provider
Web & Business Data Network
Category
email-validation
Provider price
$0.045045 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "emails"
  ],
  "properties": {
    "emails": {
      "type": "string",
      "description": "comma-separated email addresses, up to 25 per call (a single address works too)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of addresses validated in this call."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Observed as the literal string 'email_validation' on both fixtures."
          },
          "email": {
            "type": "string",
            "description": "The address as submitted, echoed back exactly as given in the input."
          },
          "domain": {
            "type": "string",
            "description": "The portion of the address after the '@'."
          },
          "mxFound": {
            "type": "boolean",
            "description": "True when the domain has at least one resolvable MX record."
          },
          "reasons": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Human-readable reason strings behind the verdict."
          },
          "verdict": {
            "type": "string",
            "description": "Confirmed as 'risky' on both real fixtures (a role account and a disposable domain). The endpoint's own documentation also describes 'ok' and 'invalid' verdicts, but neither was observed in a real call -- treat those two as documented-but-unconfirmed rather than guaranteed values."
          },
          "localPart": {
            "type": "string",
            "description": "The portion of the address before the '@'."
          },
          "mxRecords": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "host": {
                  "type": "string"
                },
                "priority": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "description": "The domain's mail-exchange hosts. Empty when mxFound is false."
          },
          "normalized": {
            "type": "string",
            "description": "The address after normalization -- identical to `email` on both fixtures observed (no case-folding or alias-stripping difference was seen)."
          },
          "roleAccount": {
            "type": "boolean",
            "description": "True for a generic mailbox local part (e.g. 'support', 'sales', 'info') rather than an individual's own address."
          },
          "syntaxValid": {
            "type": "boolean"
          },
          "freeProvider": {
            "type": "boolean",
            "description": "True when the domain is a known free consumer email provider."
          },
          "disposableDomain": {
            "type": "boolean",
            "description": "True when the domain matches a known throwaway/disposable list."
          }
        },
        "additionalProperties": true
      }
    }
  },
  "description": "The validation batch, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.045045
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026