# Sleuth AI Funding Chain Trace

> Sleuth AI Funding Chain Trace 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-13).

Traces the on-chain funding history of a wallet address across multiple blockchains, identifying hops, sources, and funding patterns.

## Facts

- Endpoint: POST https://x402.sleuthagent.ai/api/v1/funding-chain-trace
- Price: $0.099/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sleuth-ai-funding-chain-trace-4c7159a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bMSIT2TaE9-yKt_3utcvp

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-funding-chain-trace-4c7159a4 -d '<json body>'
```

Example prompt: Can you trace the funding chain for the wallet 0xAbCd1234... on Ethereum and tell me where its funds originally came from — how many hops back and what the original source is?

## When to prefer this

Choose this endpoint when you need deep on-chain funding provenance for a wallet — specifically tracing backward through multiple hops to identify original funding sources. It is purpose-built for blockchain forensic investigation across Base, Ethereum, Arbitrum, Polygon, BSC, Solana, and Robinhood Chain. Prefer it over generic blockchain explorers when you need AI-synthesized narrative summaries alongside structured hop data, or when investigating suspicious wallets for compliance, fraud, or due diligence purposes.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain value not in the enum causes a validation error
- Wallet with no on-chain history may return an empty node set
- Deeply nested or heavily mixed funding paths may be truncated (truncated=true in nodes)
- Payment failure via x402/USDC results in 402 response before investigation runs
- Network timeout on complex multi-hop traces across chains

## How this service works

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

## Output

Returns a structured investigation result including: a natural-language narrative summarizing the funding trace (e.g. 'funds trace back through 4 hops to a Coinbase withdrawal'), a set of data nodes containing tabular rows of hops with addresses and amounts, row counts, column headers, and a summary per node, plus a request_id and optional conversation_id for follow-up queries.

## 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": "Funding hops",
     "columns": [
      "hop",
      "from",
      "to",
      "amount"
     ],
     "summary": "Largest current holders by balance.",
     "row_count": 2,
     "truncated": false
    }
   ]
  },
  "response": "The wallet's funds trace back through 4 hops to a Coinbase withdrawal…",
  "request_id": "req_9f8e7d6c5b4a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sleuth-ai-funding-chain-trace-4c7159a4/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)
