# Clado Bulk Contacts Enrichment via Locus x402

> Clado Bulk Contacts Enrichment via Locus x402 is a paid API for AI agents from clado.x402.paywithlocus.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Enriches a batch of people records with contact details (email, phone) using LinkedIn URLs or Clado person IDs.

## Facts

- Endpoint: POST https://clado.x402.paywithlocus.com/clado/bulk-contacts
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clado-bulk-contacts-enrichment-via-locus-x402-665bfd32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FMMrpMllw_0RqfnH_Rkuv

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-bulk-contacts-enrichment-via-locus-x402-665bfd32 -d '<json body>'
```

Example prompt: I have a list of LinkedIn profile URLs for 5 prospects — can you use Clado to bulk enrich them and pull back their email addresses and phone numbers?

## When to prefer this

Choose this endpoint when you need to bulk-enrich multiple people at once using LinkedIn profile URLs or Clado person IDs and want both email and phone data in a single call. It is especially suited for sales and marketing workflows where you are processing lead lists rather than looking up a single individual, and when you are operating in an x402 micropayment environment at $0.001 per call.

## Known failure modes

- Invalid or non-existent LinkedIn URLs return empty or partial records
- Clado person IDs not found in database result in missing data for those entries
- No email or phone available for a contact results in null fields rather than an error
- Payment failure via x402 protocol prevents the request from being processed
- Malformed input array causes a 400-level validation error
- Rate limiting or quota exhaustion may return a 429 or service error

## How this service works

People search, LinkedIn enrichment, and deep research for lead generation.

## Output

Returns a JSON object containing enriched contact data for each input person (emails, phones, and profile details as available), along with payment confirmation showing 0.001 USDC settled and a request ID with a status URL for async tracking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "people_ids": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "linkedin_urls": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "email_enrichment": {
   "type": "boolean"
  },
  "phone_enrichment": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clado-bulk-contacts-enrichment-via-locus-x402-665bfd32/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clado.x402.paywithlocus.com](https://www.zero.xyz/host/clado.x402.paywithlocus.com/llms.txt)
