# Delx Email to Domain Extractor

> Delx Email to Domain Extractor is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-16).

Extracts and returns the domain portion of a given email address.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/email-domain
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-email-to-domain-extractor-1af3d638
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A3kyFS3ZQNOK6ng0aBxs9

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 delx-email-to-domain-extractor-1af3d638 -d '<json body>'
```

Example prompt: What's the domain from the email address john.doe@acmecorp.com?

## When to prefer this

Use this endpoint when you need a lightweight, zero-setup, pay-per-call solution to reliably extract the domain from an email address — especially in agentic pipelines where you want deterministic output without managing an API key or subscription. Ideal for ticket routing, user grouping, domain allow/block listing, or any context where you need the organizational domain from an email at minimal cost ($0.001 USDC per call).

## Known failure modes

- Invalid or malformed email address results in a validation error with no charge
- Network or payment protocol failures may prevent the call from completing
- Edge cases like emails with subdomains (user@mail.corp.example.com) return the full domain part as-is
- Empty or missing email field returns a validation error

## How this service works

Domain from an email. Call when routing tickets, grouping users, or validating corporate domains. Returns the domain part of an email address. $0.001 USDC per successful call via x402 on Base—deterministic first-party JSON, no API key, no subscription, and nothing is billed on structured validation errors.

## Output

Returns a JSON object containing the extracted domain portion of the submitted email address (e.g. for 'user@example.com', returns 'example.com'). The response is deterministic and first-party. No charge is applied for structured validation errors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email",
   "description": "Email address to inspect (domain extraction only)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "agent@example.com",
  "domain": "example.com",
  "schema": "delx/email-domain/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-email-to-domain-extractor-1af3d638/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
