# delx.ai Contact Extractor

> delx.ai Contact Extractor is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Extracts email addresses, phone numbers, and social media profile links from a given web page URL for outreach, routing, and support use cases.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/contact-extract
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-delx-ai-a1a9ed74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hdgb3rc4rWtQV43V2FFka

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 api-delx-ai-a1a9ed74 -d '<json body>'
```

Example prompt: Pull all the emails, phone numbers, and social media links you can find on https://www.acmecorp.com/contact so I can set up an outreach sequence for them.

## When to prefer this

Use this endpoint when you need to quickly harvest contact information (emails, phones, social links) from a specific web page for lead generation, CRM enrichment, outreach automation, or support routing. Prefer this over manual inspection or generic web scrapers when you need structured, typed contact output ready for downstream use.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — no contact data returned
- Page has no extractable contact signals — returns empty arrays
- JavaScript-rendered content not parsed — dynamic pages may yield incomplete results
- Rate limiting or bot protection on target page blocks extraction
- Malformed or invalid URL input — returns validation error

## How this service works

Extract emails, phones, and social links from a page for outreach, routing, and support.

## Output

Returns a structured set of contact signals extracted from the target page, including discovered email addresses, phone numbers, and social media profile URLs (e.g. LinkedIn, Twitter, Facebook).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "timeout": {
   "type": "integer",
   "maximum": 15,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "emails": [
    "hello@example.com"
   ],
   "manifest_url": "https://example.com/site.webmanifest",
   "social_links": {
    "x": "https://x.com/example",
    "github": "https://github.com/example"
   },
   "phone_numbers": [
    "+15551234567"
   ]
  },
  "tool_name": "util_contact_extract"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-a1a9ed74/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)
