# NetIntel Email Intelligence Analyzer

> NetIntel Email Intelligence Analyzer is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13, last successful call 2026-07-17).

Validates an email address for deliverability, detects disposable/temporary domains, identifies role-based addresses, verifies MX records, and returns a trust score and letter grade.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/email-intel/analyze
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Last successful call: 2026-07-17
- Success rate: 100% of calls made through Zero
- Rating: 4.0 / 5 from 1 review
- Activations on Zero: 293
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-production-440c-up-railway-app-0bcc7870
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_agSLvXSfbFCx7WBUkaIfW

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 netintel-production-440c-up-railway-app-0bcc7870
```

Example prompt: Can you check whether j.smith@acme-corp.com is a real, deliverable business email — is it disposable, role-based, and does it have valid MX records?

## When to prefer this

Use this endpoint when you need a comprehensive single-call email quality assessment — combining format validation, MX/DNS checks, disposable domain detection, role-address detection, and a composite trust score — without sending a verification email. Prefer this over a simple regex check when gating signups, qualifying leads, or cleaning marketing lists where deliverability and sender reputation matter.

## Known failure modes

- Missing or malformed email parameter returns a 400-level error
- Domain has no MX records — mx_records_found returns false and deliverability is likely 'undeliverable'
- Disposable domain database may not include newly created throwaway domains
- Network timeout when performing real-time DNS/MX lookups for obscure TLDs
- Payment not authorized — 402 response if x402 payment header is missing or insufficient

## How this service works

Validate an email address for deliverability, detect disposable/temporary domains, identify role-based addresses, verify MX records exist, and return a trust score — so agents can qualify leads, clean lists, and gate signups without sending a single email.

## Output

Returns a JSON object with the original email, a letter grade (e.g. A–F), a numeric trust score (0–100), the domain and local part, deliverability status (deliverable/risky/undeliverable), boolean flags for disposable/role-based/free-provider/business-email/format-valid/mx-records-found, the actual MX record list, and an array of human-readable findings describing any issues detected.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "email": "test.user@gmail.com"
  }
 }
}
```

## 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": [
      "email"
     ],
     "properties": {
      "email": {
       "type": "string",
       "description": "Email address to validate (e.g. john@gmail.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "domain": {
       "type": "string"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "local_part": {
       "type": "string"
      },
      "mx_records": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "format_valid": {
       "type": "boolean"
      },
      "is_disposable": {
       "type": "boolean"
      },
      "is_role_based": {
       "type": "boolean"
      },
      "deliverability": {
       "type": "string"
      },
      "is_free_provider": {
       "type": "boolean"
      },
      "mx_records_found": {
       "type": "boolean"
      },
      "is_business_email": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "john@gmail.com",
  "grade": "A",
  "score": 90,
  "domain": "gmail.com",
  "findings": [
   {
    "rule": "is_free_provider",
    "detail": "Domain is a free consumer email provider",
    "deduction": -10
   }
  ],
  "local_part": "john",
  "mx_records": [
   "gmail-smtp-in.l.google.com",
   "alt1.gmail-smtp-in.l.google.com"
  ],
  "format_valid": true,
  "is_disposable": false,
  "is_role_based": false,
  "deliverability": "risky",
  "is_free_provider": true,
  "mx_records_found": true,
  "is_business_email": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-production-440c-up-railway-app-0bcc7870/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
