# Sleuth AI Wallet Holdings API

> Sleuth AI Wallet Holdings API 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-15).

Returns the current token holdings (balances, USD values, and percentage shares) for a given blockchain wallet address using on-chain data.

## Facts

- Endpoint: POST https://x402.sleuthagent.ai/api/v1/wallet-holdings
- Price: $0.099/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sleuth-ai-wallet-holdings-api-2691f417
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iq2VQzhJ0lxd1vMYSdvU4

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-wallet-holdings-api-2691f417 -d '<json body>'
```

Example prompt: Can you pull up the current token holdings for wallet 0xAbCd...1234 on Base and show me what tokens it holds, their balances, and USD values?

## When to prefer this

Use this endpoint when you need a comprehensive, structured breakdown of all tokens held by a specific on-chain wallet address, including USD-denominated values and portfolio percentage shares. Prefer this over generic block explorers when you need machine-readable, agent-consumable output with natural language summaries for downstream reasoning. Best suited for on-chain investigation, portfolio analysis, counterparty due diligence, or whale-watching tasks on Base or compatible EVM chains.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet address with no on-chain activity may return empty holdings
- Network timeouts or on-chain data unavailability may cause failures
- Insufficient USDC balance for x402 payment will block the call
- Unsupported blockchain network may return no data

## How this service works

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

## Output

Returns a structured JSON response containing a list of token holdings for the queried wallet, including token identifiers, raw balances, USD values, and percentage share of the total portfolio. Also includes a natural language summary of the wallet's holdings and a unique request ID for tracing.

## 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": "Holdings",
     "columns": [
      "token",
      "amount",
      "usd_value"
     ],
     "summary": "Largest current holders by balance.",
     "row_count": 2,
     "truncated": false
    }
   ]
  },
  "response": "The wallet holds 1,200 ETH, 3.4M USDC, and 40 other tokens…",
  "request_id": "req_9f8e7d6c5b4a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sleuth-ai-wallet-holdings-api-2691f417/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)
