# Delx Extract Emails Lite

> Delx Extract Emails Lite 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-14).

Extracts email-shaped tokens from free text using pattern matching only, returning a list of candidate email addresses and their count without any SMTP or mailbox validation.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/extract-emails-lite
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-extract-emails-lite-e690c384
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ldbl6yiYXDkJe-kGU-B0d

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-extract-emails-lite-e690c384 -d '<json body>'
```

Example prompt: Can you pull out all the email addresses from this text for me? 'Please contact support@example.com or sales@company.org for assistance, and CC billing@example.com on your reply.'

## When to prefer this

Choose this endpoint when you need to quickly identify candidate email addresses from agent-held text without any network calls, SMTP validation, or external lookups. It is ideal for lightweight preprocessing pipelines, privacy-sensitive contexts where no data should leave the local flow, or when you simply want raw pattern-matched tokens before deciding whether to validate them further. Prefer alternatives if you need actual mailbox verification, MX record lookup, or email enrichment.

## Known failure modes

- Empty or missing 'text' field returns zero results or an error
- Text with no email-shaped patterns returns an empty list and count of 0
- Very long text inputs may hit payload size limits
- Malformed email-like patterns (e.g. missing TLD or @) will not be returned as they fail shape matching
- Payment failure via x402 prevents request execution

## How this service works

Extract email-shaped tokens from free text (shape only). Call when you need candidate emails from agent-held text without SMTP validation. Returns email list and count (shape match only) for $0.001 USDC via x402 on Base. Shape match only—not mailbox verification, MX lookup, or enrichment. No network, no keys, no retention. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns a JSON object containing a list of email-shaped tokens found in the input text (pattern-matched only, no SMTP or MX verification) and a count of how many were found. Results are advisory — callers must decide how to act on unverified addresses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Input field: text."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "shape match only",
  "count": 2,
  "emails": [
   "ops@delx.ai",
   "sales@example.com"
  ],
  "schema": "delx/util-extract-emails-lite/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-extract-emails-lite-e690c384/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)
