# Contact Email Finder

> Contact Email Finder 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-13).

Finds publicly listed contact email addresses (info@, sales@, support@, etc.) on a company's homepage, along with the domain's mail provider and MX record status.

## Facts

- Endpoint: GET https://intel.rallylive.ca/contact-emails
- 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/contact-email-finder-98af7254
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1bWGXoRc5BjkpKuyVSYZ7

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 contact-email-finder-98af7254
```

Example prompt: Can you find the public contact email addresses listed on the homepage of acme.com — like their info@, sales@, or support@ addresses — and also tell me what mail provider they use and whether their domain accepts mail?

## When to prefer this

Use this endpoint when you need to find publicly listed contact emails directly from a company's homepage for lead generation or outreach research. Prefer this over generic web search when you want structured, verified email data alongside mail provider and MX acceptance status. Best for sales intelligence pipelines, CRM enrichment, and cold outreach workflows where accuracy and cost efficiency ($0.01/call) matter.

## Known failure modes

- Domain has no publicly listed email addresses — returns empty list
- Domain is unreachable or returns non-200 HTTP status
- No MX records found for domain — mail acceptance status is false
- Obfuscated or JavaScript-rendered emails may not be detected
- Invalid or malformed domain input returns error

## How this service works

Find public contact email addresses on a company's homepage (info@, sales@, support@...) together with the domain's mail provider and whether it accepts mail (MX). Returns only addresses the site itself publishes. Lead generation and outreach research from a domain. $0.01 per site.

## Output

Returns a list of publicly listed contact email addresses found on the company's homepage (e.g. info@, sales@, support@), the domain's mail provider (e.g. Google Workspace, Microsoft 365), and whether the domain has valid MX records and accepts mail.

## 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/contact-email-finder-98af7254/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)
