# Clado People Search via Locus x402

> Clado People Search 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-13).

Searches for people and enriches LinkedIn profiles for lead generation, with filtering by company and school.

## Facts

- Endpoint: POST https://clado.x402.paywithlocus.com/clado/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clado-people-search-via-locus-x402-c69ca273
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FFl-LUPdPdxR9ZkuqNoW2

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-people-search-via-locus-x402-c69ca273 -d '<json body>'
```

Example prompt: Search Clado for up to 50 people who currently work at Stripe and went to Stanford, so I can build a lead list for outreach.

## When to prefer this

Choose this endpoint when you need to find and enrich people profiles at scale for B2B lead generation, especially when filtering by company or school affiliation. It is ideal for sales prospecting workflows where LinkedIn enrichment is required and you want pay-per-call pricing at $0.001 USDC with no subscription. Prefer it over generic web search when structured lead data with LinkedIn signals is the goal.

## Known failure modes

- Missing required query field returns an error if no search_id is provided for continuation
- Exceeding max limit of 100 results per call returns a validation error
- Invalid search_id for pagination returns not-found or expired session error
- Payment failure via x402 protocol blocks the request from executing
- Empty result set returned when query matches no profiles in the database

## How this service works

Locus public pay-per-use API

## Output

Returns a JSON object with a data field containing matched person profiles (LinkedIn-enriched lead records), a success flag, payment settlement details in USDC, and a request ID with a status URL for async result retrieval.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max results (default 30, max 100)"
  },
  "query": {
   "type": "string",
   "description": "Search query (required for new searches)"
  },
  "offset": {
   "type": "number",
   "description": "Number of results to skip (default 0)"
  },
  "schools": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Filter by school names"
  },
  "companies": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Filter by company names"
  },
  "search_id": {
   "type": "string",
   "description": "Search ID from prior search for pagination"
  },
  "advanced_filtering": {
   "type": "boolean",
   "description": "Enable advanced filtering (default true)"
  }
 }
}
```

## 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-people-search-via-locus-x402-c69ca273/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)
