# TaxPulse Wallet Sleuth — On-Chain Identity & Risk Investigation

> TaxPulse Wallet Sleuth — On-Chain Identity & Risk Investigation is a paid API for AI agents from taxpulse.theaslangroupllc.com, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-14).

Resolves a crypto wallet address to its identity (ENS, labels), traces its funding path to origin, surfaces top counterparties with entity labels, finds sibling wallets, and screens for sanctions/phishing/mixer risk with explorer evidence links.

## Facts

- Endpoint: GET https://taxpulse.theaslangroupllc.com/api/crypto/wallet-sleuth
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/taxpulse-wallet-sleuth-on-chain-identity-risk-investigation-d8ad5b2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kgHTuoNbB8an4Y8lcOaAk

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 taxpulse-wallet-sleuth-on-chain-identity-risk-investigation-d8ad5b2c
```

Example prompt: Can you investigate this wallet — 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE — trace where it got its funds from, show me any ENS name or known entity label, flag any sanctions or mixer exposure, and list its top counterparties with evidence links?

## When to prefer this

Choose this endpoint when you need comprehensive on-chain wallet forensics — specifically the combination of identity resolution, funding path tracing, sibling wallet discovery, and risk screening in a single call. Prefer this over basic balance or transaction lookups when the goal is investigative: understanding who owns a wallet, how it was funded, who it transacts with, and whether it carries regulatory or fraud risk. Ideal for AML due diligence, tax investigation support, or counterparty vetting.

## Known failure modes

- Unrecognized or malformed wallet address returns a validation error
- Wallet with no on-chain history may return empty funding path and no counterparties
- ENS resolution may return null if no ENS name is registered to the address
- Sanctions screening may be incomplete for very new or obscure addresses not yet in label databases
- Network timeout if chain RPC is congested, returning a partial result
- Address on an unsupported chain returns an unsupported network error

## How this service works

On-chain wallet investigation: resolve a wallet to its identity (ENS, public labels), trace its funding path to origin, surface top counterparties with entity labels, find sibling wallets funded by the same source, and screen for sanction/phishing/mixer risk. Every finding carries an explorer evidence link.

## Output

A structured report containing: the wallet's resolved identity (ENS name, public labels), the full funding path traced back to its origin wallet, top counterparties annotated with entity labels (exchanges, protocols, known actors), sibling wallets funded by the same source, and a risk assessment covering sanctions hits, phishing associations, and mixer exposure — each finding accompanied by a block explorer evidence link.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Chain to investigate: ethereum | base | arbitrum | optimism | polygon | gnosis. Default ethereum"
  },
  "depth": {
   "type": "string",
   "description": "Funding-trace depth (1-5). Default 3"
  },
  "address": {
   "type": "string",
   "description": "EVM wallet address (0x…)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/taxpulse-wallet-sleuth-on-chain-identity-risk-investigation-d8ad5b2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from taxpulse.theaslangroupllc.com](https://www.zero.xyz/host/taxpulse.theaslangroupllc.com/llms.txt)
