# Clado Contacts Enrichment

> Clado Contacts Enrichment is a paid API for AI agents from stable-enrich-git-shafu-replace-apollo-b2b-37a426-merit-systems.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Enriches contact information by looking up a person's professional and personal details from a LinkedIn URL, email address, or phone number

## Facts

- Endpoint: POST https://stable-enrich-git-shafu-replace-apollo-b2b-37a426-merit-systems.vercel.app/api/clado/contacts-enrich
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clado-contacts-enrichment-071be03c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WkBo4hQlo2qczjwkdOtQ6

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-contacts-enrichment-071be03c -d '<json body>'
```

Example prompt: Can you enrich this contact for me — their LinkedIn is linkedin.com/in/jane-doe-12345 — I need their email address and phone number.

## When to prefer this

Choose this endpoint when you need to enrich a single contact using a LinkedIn URL, email address, or phone number and want Clado's contact database specifically. It is well-suited for B2B sales prospecting, lead enrichment pipelines, and outreach preparation. Prefer the sibling PDL Person Enrich endpoint when you need full career history or want to query by name+domain instead.

## Known failure modes

- Contact not found in Clado database — returns empty or null result
- Invalid or malformed LinkedIn URL, email, or phone input
- Rate limiting or payment failure via x402 protocol
- Ambiguous identifier resolves to multiple contacts
- Stale or outdated contact data returned

## How this service works

Clado Contacts Enrichment - Enrich contact info from LinkedIn URL, email, or phone

## Output

Returns enriched contact information for the identified person, potentially including full name, professional title, employer, email addresses, phone numbers, LinkedIn profile, and other social profiles associated with the input identifier.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "email_enrichment",
      "phone_enrichment"
     ],
     "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)"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clado-contacts-enrichment-071be03c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-enrich-git-shafu-replace-apollo-b2b-37a426-merit-systems.vercel.app](https://www.zero.xyz/host/stable-enrich-git-shafu-replace-apollo-b2b-37a426-merit-systems.vercel.app/llms.txt)
