# PennyRail Email Extractor

> PennyRail Email Extractor is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Extracts all email addresses found within an input text string

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/text.extract-emails--find-email-addresses
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pennyrail-email-extractor-3bc62a3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yKatF56Mznpgay_0XDyES

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 pennyrail-email-extractor-3bc62a3c -d '<json body>'
```

Example prompt: Can you pull out all the email addresses from this text for me: 'Please reach out to john.doe@example.com or support@company.org for assistance, or CC legal@firm.net'?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.001 USDC) microservice call to extract email addresses from arbitrary text without setting up your own regex or NLP pipeline. Ideal for agents processing scraped content, documents, or user-submitted strings where contact email harvesting is needed on demand.

## Known failure modes

- No emails found in input — returns empty list or empty result
- Malformed or non-string input causes validation error
- Obfuscated emails (e.g. 'user [at] domain [dot] com') may not be detected
- Very large input strings may time out or be truncated
- Payment failure via x402 results in 402 response before processing

## How this service works

Machine-readable settlement service

## Output

A JSON object containing the email addresses extracted from the provided input text, likely as an array of matched email strings found within the content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-email-extractor-3bc62a3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pennyrail.vercel.app](https://www.zero.xyz/host/pennyrail.vercel.app/llms.txt)
