# Clado Bulk Contacts Status Check

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

Polls the status of an async bulk contacts enrichment job previously submitted to Clado via the Locus x402 payment protocol.

## Facts

- Endpoint: POST https://clado.x402.paywithlocus.com/clado/bulk-contacts-status
- Price: $0.003/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-status-check-bb8d4db0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YYvEXMko_oY3duXaDV9lr

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-status-check-bb8d4db0 -d '<json body>'
```

Example prompt: Check the status of my Clado bulk contacts job — the job ID is abc123xyz — and let me know if the enriched lead data is ready yet.

## When to prefer this

Use this endpoint when you have already submitted a bulk contacts enrichment job to Clado and need to poll for its completion and retrieve results. This is the async status-check companion to the bulk contacts submission endpoint — not for initiating new searches or single-contact lookups.

## Known failure modes

- Invalid or expired jobId returns empty or error data object
- Job still processing returns success:true but empty data payload
- Payment not settled may result in access denial
- Malformed jobId UUID causes request rejection
- Network timeout if Locus x402 facilitator is unreachable

## How this service works

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

## Output

Returns a JSON object indicating whether the bulk contacts job is complete, along with the enriched contact data payload if ready, plus payment settlement details (settled and authorized USDC amounts) and a request ID with a status URL for further tracking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "jobId": {
   "type": "string"
  }
 }
}
```

## 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-status-check-bb8d4db0/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)
