# Wallet Cluster & Related Wallets Finder

> Wallet Cluster & Related Wallets Finder is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Finds related wallets and interaction clusters for a given blockchain address, returning funding sources, related wallets, and common contracts

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/wallet/cluster
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-711e0a30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eN8PWJnsSM24cMREDhc5j

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 defi-shield-hazel-vercel-app-711e0a30 -d '<json body>'
```

Example prompt: Can you find all the related wallets and interaction clusters for the address 0x1234567890123456789012345678901234567890 — I want to know what wallets it interacts with, where it was funded from, and what contracts they share?

## When to prefer this

Use this endpoint when you need to discover wallet clusters, trace funding sources, or map on-chain social graphs around a specific address. Particularly useful for fraud detection, AML screening, due diligence on counterparties, or understanding the network of wallets surrounding a DeFi participant. Prefer this over a basic trust score endpoint when you need the full relational graph rather than a single risk score.

## Known failure modes

- Invalid Ethereum address format returns an error
- Address with no on-chain transactions returns empty related_wallets and common_contracts arrays with a summary indicating no transactions found
- Network timeout or upstream RPC failure may return a 500 error
- Malformed JSON request body returns a 400 error

## Output

Returns a cluster analysis object containing the queried address, a natural language summary, the funding source address (if found), a list of related wallet addresses, a list of common contracts shared among clustered wallets, and the response time in milliseconds. Returns empty arrays when no transactions or relationships are found.

## Example request

```json
{
 "input": {
  "body": {
   "address": "0x1234567890123456789012345678901234567890"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address to find related wallets (0x + 40 hex chars)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-shield-hazel-vercel-app-711e0a30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-shield-hazel.vercel.app](https://www.zero.xyz/host/defi-shield-hazel.vercel.app/llms.txt)
