# ContactOut Email Enrichment

> ContactOut Email Enrichment is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.33/call, status unknown (last checked 2026-09-13).

Returns professional profile details (contact info, social links, company data) for a given email address.

## Facts

- Endpoint: GET https://x402.orthogonal.com/contactout/v1/email/enrich
- Price: $0.33/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contactout-email-enrichment-5d3dd465
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PRKDxigUwiiE7d-uo49kZ

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 contactout-email-enrichment-5d3dd465
```

Example prompt: Look up the profile details for the email address john.smith@acme.com and include their work email if available.

## When to prefer this

Use this endpoint when you have an email address and need to identify or enrich the associated person's professional profile, including their job title, employer, and social profiles. Prefer this over general web search when you need structured, reliable contact data rather than scraped text. Best for sales prospecting, CRM enrichment, and contact identification workflows.

## Known failure modes

- Email not found in database — empty or null result returned
- Invalid email format — malformed input rejected
- No work email available when 'include=work_email' is requested
- Rate limiting or quota exceeded for the API key
- Email belongs to a private individual with no professional profile data

## How this service works

Get profile details from an email address.

## Output

Returns profile details associated with the given email address, including the person's name, job title, company, social profile links, and optionally their work email address.

## 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": {
      "email": {
       "type": "string",
       "description": "Email address"
      },
      "include": {
       "type": "string",
       "description": "Data to include (work_email)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contactout-email-enrichment-5d3dd465/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
