# Sleuth AI Holder Distribution

> Sleuth AI Holder Distribution 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-16).

Returns a ranked breakdown of the largest token holders for an on-chain asset, including wallet addresses, balances, and percentage of total supply.

## Facts

- Endpoint: POST https://x402.sleuthagent.ai/api/v1/holder-distribution
- Price: $0.099/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sleuth-ai-holder-distribution-90757740
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c1tOg_93W-kp0d4i7ZfIx

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-holder-distribution-90757740 -d '<json body>'
```

Example prompt: Can you pull the holder distribution for the token at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Base and tell me if the supply is whale-heavy or reasonably spread out?

## When to prefer this

Use this endpoint when you need structured, ranked on-chain holder data for a specific token contract, especially when you want both raw wallet-level data and a summarized concentration assessment. Prefer this over generic blockchain explorers when you need the data in a machine-readable format suitable for agent workflows, or when you want AI-narrated analysis alongside the raw numbers.

## Known failure modes

- Invalid or unrecognized contract address returns an error or empty result
- Contract exists on a different chain than expected, causing no data
- Token has insufficient on-chain data or indexing lag, returning incomplete results
- Payment failure via x402/USDC results in 402 Payment Required response
- Rate limiting or node timeout may cause delayed or failed responses

## How this service works

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

## Output

Returns a ranked list of the top token holders with their wallet addresses, raw balances, and percentage of total supply, along with a natural language summary describing whether the distribution is whale-heavy or dispersed. Results include metadata like row count and whether the result set was truncated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "auto",
    "base",
    "ethereum",
    "arbitrum",
    "polygon",
    "bsc",
    "robinhood",
    "solana",
    "bnb",
    "robinhoodchain"
   ],
   "type": "string",
   "default": "auto"
  },
  "token": {
   "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": "Top holders",
     "columns": [
      "wallet",
      "balance",
      "pct_supply"
     ],
     "summary": "Largest current holders by balance.",
     "row_count": 2,
     "truncated": false
    }
   ]
  },
  "response": "The top 10 wallets hold 64% of supply; the distribution is whale-heavy…",
  "request_id": "req_9f8e7d6c5b4a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sleuth-ai-holder-distribution-90757740/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)
