# x402.shizu.me Wallet Reputation

> x402.shizu.me Wallet Reputation is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a 0-100 reputation score plus settlement statistics for any wallet address, derived from x402 payment logs.

## Facts

- Endpoint: GET https://x402.shizu.me/rep
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-shizu-me-wallet-reputation-04126a22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_58aF5egKOem3Jlb-_MYot

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 x402-shizu-me-wallet-reputation-04126a22
```

Example prompt: Before I release the bounty, can you pull the x402 reputation score for wallet 0xAbC1234...? I want to see their paid call count, how many routes they've used, tenure, any rejected payments, and their overall 0-100 score.

## When to prefer this

Use this endpoint when you need to assess a counterparty's trustworthiness within the x402 ecosystem specifically — before releasing escrow, assigning a bounty, or entering a peer-to-peer agreement. It is uniquely backed by actual x402 settlement logs rather than general blockchain transaction history, making it more relevant than generic on-chain reputation tools for x402-based interactions.

## Known failure modes

- Wallet address not found in settlement logs — returns zero stats or empty record
- Invalid wallet address format — returns 400 or validation error
- Wallet has no x402 payment history — score may default to 0 or minimum
- Rate limiting or payment failure for the $0.002 USDC call fee
- Network timeout if settlement log query is slow

## How this service works

Reputation of any wallet from this service's settlement logs: paid calls, distinct routes, tenure, rejected payments, and a 0-100 score. Use it to size up a counterparty before an escrow or bounty.

## Output

A JSON object containing the wallet's 0-100 reputation score, total number of paid x402 calls, count of distinct API routes used, account tenure, and count of rejected payments — all derived from x402 settlement logs.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 47,
  "wallet": "0x…",
  "paid_calls": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-wallet-reputation-04126a22/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
