# Sleuth AI Holders Overlap

> Sleuth AI Holders Overlap 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 wallets that hold two specified on-chain tokens simultaneously, flagging known insider addresses among the shared holders.

## Facts

- Endpoint: POST https://x402.sleuthagent.ai/api/v1/holders-overlap
- 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-holders-overlap-3730def6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CRWkGcjHAC36ngKENT075

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-holders-overlap-3730def6 -d '<json body>'
```

Example prompt: Can you check the holder overlap between 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 and 0x6B175474E89094C44Da98b954EedeAC495271d0F on Base, and flag any known insider addresses among the shared holders?

## When to prefer this

Use this endpoint when you need to find cross-token wallet overlap on-chain — especially to detect coordinated holdings, insider activity, or shared investor bases between two specific tokens. Prefer this over generic blockchain explorers when you need both structured tabular data and a natural language investigation summary in a single call, and when paying per-call via x402/USDC on Base is acceptable.

## Known failure modes

- Invalid or unrecognized token addresses return an error or empty result
- Tokens on unsupported chains will not return data
- Insufficient USDC balance for x402 payment causes the request to be rejected
- Very new tokens with sparse on-chain data may return incomplete holder sets
- Rate limiting or node congestion may delay responses

## How this service works

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

## Output

Returns a list of wallet addresses holding both tokens, each with their balance and percentage of total supply, plus a natural language summary noting the total number of shared holders and which among them are known insider addresses. Also includes a request ID for traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "auto",
    "base",
    "ethereum",
    "arbitrum",
    "polygon",
    "bsc",
    "robinhood",
    "solana",
    "bnb",
    "robinhoodchain"
   ],
   "type": "string",
   "default": "auto"
  },
  "tokens": {
   "anyOf": [
    {
     "type": "array",
     "items": {
      "type": "string",
      "maxLength": 200,
      "minLength": 1
     },
     "maxItems": 10,
     "minItems": 2
    },
    {
     "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": "Shared holders",
     "columns": [
      "wallet",
      "balance",
      "pct_supply"
     ],
     "summary": "Largest current holders by balance.",
     "row_count": 2,
     "truncated": false
    }
   ]
  },
  "response": "17 wallets hold both tokens; 4 of them are known insider addresses…",
  "request_id": "req_9f8e7d6c5b4a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sleuth-ai-holders-overlap-3730def6/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)
