# Sleuth AI Find Side Wallets

> Sleuth AI Find Side Wallets is a paid API for AI agents from x402.sleuthagent.ai, paid per call via x402, $0.099/call, status unknown (last checked 2026-09-14).

Identifies side wallets and linked addresses associated with a given blockchain wallet address using on-chain investigation.

## Facts

- Endpoint: POST https://x402.sleuthagent.ai/api/v1/find-side-wallets
- Price: $0.099/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sleuth-ai-find-side-wallets-11875173
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eiPxnN1txSb8p_deCIffi

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 sleuth-ai-find-side-wallets-11875173 -d '<json body>'
```

Example prompt: Can you find the side wallets and linked addresses associated with 0x1234567890abcdef1234567890abcdef12345678 — I want to know which wallets are connected to it and how they're related?

## When to prefer this

Use this endpoint when you need to identify wallet clusters, side wallets, or linked addresses for a specific blockchain address — particularly for fraud investigation, compliance checks, or due diligence. Prefer this over generic blockchain explorers when you need AI-interpreted relationship mapping rather than raw transaction history.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unknown or unindexed wallet address may return empty results
- Insufficient USDC balance for x402 payment causes the call to fail
- Rate limiting or network issues may cause timeouts
- Address with no on-chain activity may return no linked wallets

## How this service works

Pay-per-call on-chain investigation API (x402, USDC on Base).

## Output

Returns a structured JSON response with a natural language summary of findings and a data node containing discovered side wallets or linked addresses, including wallet addresses, relationship descriptors, balance data, and a summary of largest holders or controllers. Also includes a request ID for reference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "auto",
    "base",
    "ethereum",
    "arbitrum",
    "polygon",
    "bsc",
    "robinhood",
    "solana",
    "bnb",
    "robinhoodchain"
   ],
   "type": "string",
   "default": "auto"
  },
  "wallet": {
   "type": "string",
   "maxLength": 200,
   "minLength": 1
  },
  "conversation_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "nodes": [
    {
     "id": "base_sleuth:obs0",
     "rows": [
      [
       "0x1111111111111111111111111111111111111111",
       "12,400,000",
       "41.2%"
      ],
      [
       "0x2222222222222222222222222222222222222222",
       "6,900,000",
       "22.9%"
      ]
     ],
     "tool": "data_miner",
     "title": "Side wallets",
     "columns": [
      "wallet",
      "relationship"
     ],
     "summary": "Largest current holders by balance.",
     "row_count": 2,
     "truncated": false
    }
   ]
  },
  "response": "The wallet was funded by 0x… and controls 3 linked side wallets…",
  "request_id": "req_9f8e7d6c5b4a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sleuth-ai-find-side-wallets-11875173/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.sleuthagent.ai](https://www.zero.xyz/host/x402.sleuthagent.ai/llms.txt)
