# TariffMonkee Email Verify

> TariffMonkee Email Verify is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Checks a single email address for deliverability by validating syntax, MX records, disposable/temp-mail domain status, and SPF/DMARC presence.

## Facts

- Endpoint: GET https://tariffmonkee.com/paid/email-verify
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tariffmonkee-email-verify-e925f9a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BMRdQlEA7TXz-NvpQ4aEb

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 tariffmonkee-email-verify-e925f9a7
```

Example prompt: Can you check whether john.doe@example.com is a real, deliverable email address — specifically if it has MX records, passes syntax checks, isn't from a disposable/temp-mail domain, and has SPF/DMARC set up?

## When to prefer this

Choose this endpoint when you need a fast, single-address deliverability check that covers syntax, DNS (MX, SPF, DMARC), and disposable domain detection without performing a full SMTP handshake. Ideal for agent workflows that need to screen user-submitted emails before sending, onboarding, or storing them. Prefer it over full domain audit tools when the scope is strictly one email address and speed matters.

## Known failure modes

- Malformed or missing email address input returns an error
- DNS timeout or lookup failure may result in inconclusive MX/SPF/DMARC checks
- Newly created disposable domains not yet in blocklists may pass the disposable check
- No guarantee of mailbox-level existence (SMTP probe not performed)
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

Email address -> deliverability verdict. Checks syntax, MX record presence, disposable/temp-mail domain match, and SPF/DMARC presence on the domain. Scoped to a single address, not a full domain security audit.

## Output

Returns a deliverability verdict for the single email address, including: syntax validity, MX record presence on the domain, whether the domain is a known disposable/temp-mail provider, and whether SPF and DMARC DNS records are present on the sending domain.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tariffmonkee-email-verify-e925f9a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tariffmonkee.com](https://www.zero.xyz/host/tariffmonkee.com/llms.txt)
