# Delx Extract Emails

> Delx Extract Emails 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-like addresses from a block of text, returning all identified email patterns found within it.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/extract-emails
- 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-271299cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZaUyexrDhVQJlCxfxK62u

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-271299cd -d '<json body>'
```

Example prompt: Can you pull out all the email addresses from this text: 'For support contact help@example.com or billing@company.org, and reach our CEO at john.doe@corp.net'?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-use extraction of email addresses from unstructured text without setting up your own regex pipeline or NLP stack. Ideal for agents processing variable or user-generated text that may contain contact information. Best for single-call, on-demand extraction rather than bulk batch processing pipelines.

## Known failure modes

- No emails found in text — returns empty list
- Malformed or overly long input text may result in processing error
- False positives for strings that resemble emails but are not valid addresses
- Missing or invalid request body returns 400 error
- Payment failure or insufficient balance returns 402 error

## How this service works

Extract email-like addresses from text for $0.001 USDC. Call when you need this bounded result without an API key or subscription. Returns machine-readable JSON via x402 on Base or Solana. Limitation: results cover only the supplied input or one bounded public endpoint at request time; callers must verify before acting.

## Output

A list of email-like address strings found within the submitted text, returned as structured data after processing the input content for $0.001 USDC per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

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