# Vealth Wallet Reputation (CDP-settled)

> Vealth Wallet Reputation (CDP-settled) is a paid API for AI agents from vealth.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns on-protocol work history and settlement reputation for a given wallet address, with an honest 'found:false' when no history exists.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/cdp/wallet-reputation
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-wallet-reputation-cdp-settled-4ded011b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p2HTCeQtz6ZOm91KDklBF

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 vealth-wallet-reputation-cdp-settled-4ded011b -d '<json body>'
```

Example prompt: Can you check the on-chain reputation and settlement history for wallet address 0x1a2b3c4d5e6f7890abcdef1234567890abcdef12 — I want to know if it has any verified work history before I send funds to it.

## When to prefer this

Use this endpoint when you need a structured, on-protocol reputation score and settlement history for a specific wallet address — especially when you want an honest 'no history' signal rather than a silent failure. Prefer this over generic blockchain explorers when you need aggregated work-provenance reputation rather than raw transaction data, and when CDP-settled payment infrastructure is already in your agent's stack.

## Known failure modes

- Wallet address not found in records — returns found:false (not an error, expected behavior)
- Invalid wallet address format — malformed input rejected
- Payment not settled via CDP x402 — request blocked without valid payment
- Service unavailable — upstream CDP or Regen Ledger connectivity issues
- Rate limit exceeded for the endpoint

## How this service works

Wallet Reputation (CDP-settled mirror) — a wallet's on-protocol work + settlement history from our records. Honest found:false when we have no history for it.

## Output

A JSON object containing the wallet's on-protocol work history, settlement records from Vealth's CDP-settled mirror, and a 'found' boolean — returning found:false honestly when no history exists for the queried wallet.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-wallet-reputation-cdp-settled-4ded011b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
