# Email Address Extractor

> Email Address Extractor is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts, deduplicates, lowercases, and syntax-validates every email address from a block of text, returning a clean contact list with per-domain counts.

## Facts

- Endpoint: GET https://intel.rallylive.ca/email/extract
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/email-address-extractor-bf75e9a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OaK5qqD_spTzaL2IdcIWD

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 email-address-extractor-bf75e9a1
```

Example prompt: Pull out every email address from this block of text I just scraped — deduplicate them, normalize to lowercase, and give me a count of how many came from each domain: [paste text here].

## When to prefer this

Choose this endpoint when you have unstructured text (scraped HTML, documents, logs, pastes) and need a clean, deduplicated, normalized list of all email addresses it contains with domain-level analytics. Prefer this over manual regex or contact-email-finder (which finds emails on live websites) when your text is already fetched and you need bulk extraction with deduplication and per-domain counting in one call.

## Known failure modes

- No emails found in input text — returns empty list
- Input text exceeds 50 KB limit — request rejected or truncated
- Malformed or ambiguous email-like strings may be excluded by syntax validation
- Payment failure via x402 protocol — request not processed
- GET request with missing or empty query parameter returns error

## How this service works

Extract every email address from a block of text: deduplicated, lowercased, syntax-validated, with a per-domain count. Turn scraped pages, documents or logs into a clean contact list. $0.01 per call (text up to 50 KB).

## Output

A deduplicated, lowercased, syntax-validated list of all email addresses found in the input text, along with a per-domain count showing how many addresses belong to each email domain (e.g., gmail.com: 5, company.com: 3).

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/email-address-extractor-bf75e9a1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
