# Heurist Mesh USDC Top Funders Forensics

> Heurist Mesh USDC Top Funders Forensics is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Identifies the top source wallets sending USDC to a target address, with counts, total volume, and time range to surface concentrated funding patterns and hub/controller wallets.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/agents/BaseUSDCForensicsAgent/usdc_top_funders
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-usdc-top-funders-forensics-cc4ff266
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KDYONfi9xdq9D6AFxQU7h

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 heurist-mesh-usdc-top-funders-forensics-cc4ff266 -d '<json body>'
```

Example prompt: Can you show me the top 20 wallets that have been sending USDC to 0x4e5F9B1dA33A8D8A36b06A2C3B370e80d64d0D78? I want to see if there are any dominant funders or controller wallets concentrating the inflows.

## When to prefer this

Use this endpoint when you need to investigate the funding sources of a specific wallet address on Base network using USDC, particularly for forensic analysis, anti-money-laundering checks, detecting coordinated funding, or identifying controller/hub wallets. Prefer this over generic transaction endpoints when you specifically want aggregated inflow statistics ranked by volume or frequency from unique sender addresses.

## Known failure modes

- Invalid or malformed wallet address returns validation error
- Address with no USDC inflows returns empty funder list
- Network or RPC errors may cause lookup failure
- Rate limiting or payment failure for the $0.005 USDC per call fee
- Very new addresses with no on-chain history return empty results

## How this service works

Identify the top source wallets that send USDC to the target address, including counts, total volume, and time range. Use to detect concentrated funding patterns and surface potential hub/controller wallets.

## Output

Returns a ranked list of up to N source wallets that have sent USDC to the target address, including each sender's wallet address, number of transactions, total USDC volume sent, and the time range of activity — enabling identification of concentrated funding patterns or potential hub/controller wallets.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "debug": {
   "type": "boolean",
   "description": "Debug mode flag. ALWAYS use false."
  },
  "limit": {
   "type": "integer",
   "description": "Maximum number of funders to return (default 50)"
  },
  "address": {
   "type": "string",
   "description": "Wallet address starting with 0x"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-usdc-top-funders-forensics-cc4ff266/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
