# Oromi Email Verification

> Oromi Email Verification is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Verifies an email address by checking MX records and disposable domain status to determine deliverability likelihood

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/verify/email
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-email-verification-b3da9fdf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4YPo7kXpmHkzYgwWbd3d7

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oromi-email-verification-b3da9fdf
```

Example prompt: Can you check whether john.smith@example.com is a real, deliverable email address — specifically whether it has valid MX records and isn't from a disposable domain?

## When to prefer this

Choose this endpoint when you need a fast, low-cost per-call email check that returns both MX record presence and disposable-domain detection in a single response, paid micro-transactionally in USDC without a subscription. Ideal for AI agent workflows that need to screen individual email addresses on demand without pre-negotiating API keys or monthly plans.

## Known failure modes

- Missing or malformed 'address' query parameter returns a validation error
- DNS lookup failure for MX records may result in inconclusive verdict
- Payment not included or insufficient USDC via x402 protocol returns HTTP 402
- Network timeouts on DNS resolution may delay or fail the response
- Unknown or newly registered domains may lack MX records even if legitimate

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing a 'checks' map with boolean flags (mx_present, disposable_domain) and a 'verdict' string such as 'deliverable_likely' indicating the overall deliverability assessment of the email address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Email address to verify"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "checks": {
   "mx_present": true,
   "disposable_domain": false
  },
  "verdict": "deliverable_likely"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-email-verification-b3da9fdf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
