# Clado Contact Enrichment

> Clado Contact Enrichment is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Enrich a contact's profile information by providing a LinkedIn URL, email address, or phone number to retrieve detailed contact data.

## Facts

- Endpoint: POST https://stableenrich.dev/api/clado/contacts-enrich
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clado-005becdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oktIJF0ygIaWuq9FbEFbU

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 clado-005becdb -d '<json body>'
```

Example prompt: Can you enrich the contact info for the person at https://www.linkedin.com/in/johndoe — I want to get their email, phone, job title, and company details.

## When to prefer this

Use this endpoint when you need to enrich a single contact record and have exactly one identifier — a LinkedIn URL, email, or phone number. Prefer this over generic web scraping when you need structured, professional profile data from Clado's curated contact database. Best suited for sales prospecting, CRM enrichment, and lead qualification workflows.

## Known failure modes

- Input identifier not found in Clado's database — returns empty or null result
- More than one identifier provided — API requires exactly one of linkedin_url, email, or phone
- Invalid LinkedIn URL format — returns validation error
- Phone number not in a recognized format — returns error
- Contact exists but has limited data — partial enrichment returned
- Rate limiting or quota exceeded — returns 429 or similar error

## How this service works

Enrich contact information from LinkedIn URL, email, or phone number. Must provide exactly one of: linkedin_url, email, or phone.

## Output

Returns enriched contact profile data including name, email, phone number, job title, company, and social profile information associated with the provided LinkedIn URL, email, or phone number.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "description": "Email address to enrich"
  },
  "phone": {
   "type": "string",
   "description": "Phone number to enrich"
  },
  "linkedin_url": {
   "type": "string",
   "description": "LinkedIn profile URL to enrich"
  },
  "email_enrichment": {
   "type": "boolean",
   "default": false,
   "description": "Request email enrichment (costs credits when found)"
  },
  "phone_enrichment": {
   "type": "boolean",
   "default": false,
   "description": "Request phone enrichment (costs credits when found)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clado-005becdb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
