# Heurist Base USDC Forensics Agent

> Heurist Base USDC Forensics Agent 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-14).

Returns a USDC activity profile for a wallet on Base: first/last seen timestamps, transfer count, total USDC inflows/outflows, and net flow.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/BaseUSDCForensicsAgent/usdc_basic_profile
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mesh-heurist-xyz-f1313498
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tFW_STGZmmbTqACwHXiZW

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 mesh-heurist-xyz-f1313498 -d '<json body>'
```

Example prompt: Pull up the USDC activity profile for wallet 0x1234...abcd on Base — I want to know when it first and last moved USDC, how many transfers it made, and the total in vs out with net flow.

## When to prefer this

Use this endpoint when you need a quick, high-level USDC forensic summary for a specific wallet on the Base chain — including lifetime transfer counts, in/out totals, and activity window — without needing full transaction-level detail. Prefer this over general blockchain explorers when you want a structured, agent-ready analytics response specifically scoped to USDC on Base.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet has no USDC activity on Base — returns zero values or empty profile
- Base chain RPC or indexer unavailable — upstream timeout or error
- Payment of $0.005 USDC not fulfilled — 402 payment required error
- Rate limiting or quota exceeded on the Heurist mesh endpoint

## How this service works

Get a wallet's USDC activity summary on Base: first/last seen timestamps, total transfer count, aggregate USDC in/out and net flow. Use this for a quick financial snapshot before drilling into details.

## Output

Returns a structured summary including: first-seen and last-seen timestamps, total number of USDC transfers, cumulative USDC received (in), cumulative USDC sent (out), and the net USDC flow (in minus out) for the specified wallet on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "address": {
       "type": "string",
       "description": "Wallet address starting with 0x"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mesh-heurist-xyz-f1313498/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)
